From 686eb787c9d0b2105f6d24bca3dd553856d39179 Mon Sep 17 00:00:00 2001 From: Sergio Chouhy Date: Thu, 4 Dec 2025 10:02:29 -0300 Subject: [PATCH] fix test names --- nssa/core/src/program.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nssa/core/src/program.rs b/nssa/core/src/program.rs index 744c1dc..5912724 100644 --- a/nssa/core/src/program.rs +++ b/nssa/core/src/program.rs @@ -164,7 +164,7 @@ mod tests { use super::*; #[test] - fn test_post_state_new_without_claim_constructor() { + fn test_post_state_new_with_claim_constructor() { let account = Account { program_owner: [1, 2, 3, 4, 5, 6, 7, 8], balance: 1337, @@ -179,7 +179,7 @@ mod tests { } #[test] - fn test_post_state_new_with_claim_constructor() { + fn test_post_state_new_without_claim_constructor() { let account = Account { program_owner: [1, 2, 3, 4, 5, 6, 7, 8], balance: 1337,