From 6e74cca512288d8328e45c08ca5f3274b3f9160e Mon Sep 17 00:00:00 2001 From: jonesmarvin8 <83104039+jonesmarvin8@users.noreply.github.com> Date: Mon, 16 Mar 2026 09:12:29 -0400 Subject: [PATCH] fixed unit test --- nssa/src/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nssa/src/error.rs b/nssa/src/error.rs index 83c88998..c42b70d2 100644 --- a/nssa/src/error.rs +++ b/nssa/src/error.rs @@ -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(())