From 3cbeb6603bc9eeacab3e3e9332707b13e8cbb643 Mon Sep 17 00:00:00 2001 From: sword-smith Date: Thu, 19 Sep 2024 23:46:29 +0200 Subject: [PATCH] fix(test_helper): Remove superfluous trait bound on test helper --- tasm-lib/src/test_helpers.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasm-lib/src/test_helpers.rs b/tasm-lib/src/test_helpers.rs index b76058ef..1dfa6b4c 100644 --- a/tasm-lib/src/test_helpers.rs +++ b/tasm-lib/src/test_helpers.rs @@ -480,7 +480,7 @@ fn link_for_isolated_run(snippet_struct: &T) -> Vec( +pub fn test_rust_equivalence_given_execution_state( snippet_struct: &T, execution_state: InitVmState, ) -> VMState { @@ -490,7 +490,7 @@ pub fn test_rust_equivalence_given_execution_state &execution_state.stack, &execution_state.public_input, &nondeterminism, - &None, + &execution_state.sponge, None, ) }