Skip to content

Commit adb656c

Browse files
authored
fix: format txe_oracle_version assert_eq in misc.nr (#23292)
2 parents 129b306 + ce3541b commit adb656c

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

  • noir-projects/aztec-nr/aztec/src/test/helpers/test_environment/test

noir-projects/aztec-nr/aztec/src/test/helpers/test_environment/test/misc.nr

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,5 @@ unconstrained fn txe_oracle_version_is_checked_upon_env_creation() {
6060
let _env = TestEnvironment::new();
6161

6262
assert_eq(mock.times_called(), 1);
63-
assert_eq(
64-
mock.get_last_params::<(Field, Field)>(),
65-
(TXE_ORACLE_VERSION_MAJOR, TXE_ORACLE_VERSION_MINOR),
66-
);
63+
assert_eq(mock.get_last_params::<(Field, Field)>(), (TXE_ORACLE_VERSION_MAJOR, TXE_ORACLE_VERSION_MINOR));
6764
}

0 commit comments

Comments
 (0)