Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
gzanitti committed Dec 17, 2024
1 parent 1c581c3 commit 8568981
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pilopt/tests/optimizer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@ fn replace_intermediate() {
"#;
let expectation = r#"namespace N(65536);
col witness X;
col other_intermediate = 0;
N::X' = N::X + 1 + N::other_intermediate;
N::X' = N::X + 1;
"#;
let optimized = optimize(analyze_string::<GoldilocksField>(input).unwrap()).to_string();
assert_eq!(optimized, expectation);
Expand Down

0 comments on commit 8568981

Please sign in to comment.