Skip to content

Commit

Permalink
fix(test_helper): Remove superfluous trait bound on test helper
Browse files Browse the repository at this point in the history
  • Loading branch information
Sword-Smith committed Sep 19, 2024
1 parent 857546e commit 3cbeb66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasm-lib/src/test_helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ fn link_for_isolated_run<T: RustShadow>(snippet_struct: &T) -> Vec<LabelledInstr
}

#[allow(dead_code)]
pub fn test_rust_equivalence_given_execution_state<T: BasicSnippet + RustShadow>(
pub fn test_rust_equivalence_given_execution_state<T: RustShadow>(
snippet_struct: &T,
execution_state: InitVmState,
) -> VMState {
Expand All @@ -490,7 +490,7 @@ pub fn test_rust_equivalence_given_execution_state<T: BasicSnippet + RustShadow>
&execution_state.stack,
&execution_state.public_input,
&nondeterminism,
&None,
&execution_state.sponge,
None,
)
}
Expand Down

0 comments on commit 3cbeb66

Please sign in to comment.