From 7f0410a725e067a43c29c0399c332434d450063c Mon Sep 17 00:00:00 2001 From: two-heart <12869538+two-heart@users.noreply.github.com> Date: Sat, 30 Aug 2025 19:28:24 +0200 Subject: [PATCH] update instr decoding test assertion --- program/src/program/instruction.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/program/src/program/instruction.rs b/program/src/program/instruction.rs index c7c8b3e..858be2f 100644 --- a/program/src/program/instruction.rs +++ b/program/src/program/instruction.rs @@ -122,7 +122,7 @@ fn test_instruction_serialization() { Ok(j) => j, Err(_) => { // This needs to be changed if new instructions are added - assert!(i > 7); + assert!(i > 9); continue; } };