fixed unit test

This commit is contained in:
jonesmarvin8 2026-03-16 09:12:29 -04:00
parent b5d0d2d0c1
commit 6e74cca512

View File

@ -76,7 +76,7 @@ mod tests {
TestErr,
}
fn test_function_ensure(cond: bool) -> Result<(), testError> {
fn test_function_ensure(cond: bool) -> Result<(), TestError> {
ensure!(cond, TestError::TestErr);
Ok(())