Skip to content

Commit

Permalink
chore: fix some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksuss committed Jan 2, 2024
1 parent a09cc54 commit 8ca918f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions engine-tests/src/tests/modexp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,13 @@ fn bench_modexp() {

// TODO: Aurora not least anymore after switching to the nightly-2023-12-15.
// Typical example with U256-sized inputs.
// let input = BenchInput::random(32);
// let result = context.bench(&input);
// assert_eq!(
// result.least(),
// Implementation::Aurora,
// "Aurora not least:\n{result:?}"
// );
let input = BenchInput::random(32);
let result = context.bench(&input);
assert_eq!(
result.least(),
Implementation::IBig, // FIXME: Should be Aurora.
"Aurora not least:\n{result:?}"
);
}

// This test is marked as ignored because it should only be run with `--release`
Expand Down

0 comments on commit 8ca918f

Please sign in to comment.