Skip to content

Commit 3cbeb66

Browse files
committed
fix(test_helper): Remove superfluous trait bound on test helper
1 parent 857546e commit 3cbeb66

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tasm-lib/src/test_helpers.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ fn link_for_isolated_run<T: RustShadow>(snippet_struct: &T) -> Vec<LabelledInstr
480480
}
481481

482482
#[allow(dead_code)]
483-
pub fn test_rust_equivalence_given_execution_state<T: BasicSnippet + RustShadow>(
483+
pub fn test_rust_equivalence_given_execution_state<T: RustShadow>(
484484
snippet_struct: &T,
485485
execution_state: InitVmState,
486486
) -> VMState {
@@ -490,7 +490,7 @@ pub fn test_rust_equivalence_given_execution_state<T: BasicSnippet + RustShadow>
490490
&execution_state.stack,
491491
&execution_state.public_input,
492492
&nondeterminism,
493-
&None,
493+
&execution_state.sponge,
494494
None,
495495
)
496496
}

0 commit comments

Comments
 (0)