Skip to content

Commit

Permalink
fix: fix test to accomodate new max read requests (#7286)
Browse files Browse the repository at this point in the history
Reconciles TXE with new note reading limits.
  • Loading branch information
Thunkar authored Jul 2, 2024
1 parent df3b27b commit a023367
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions noir-projects/aztec-nr/aztec/src/note/note_getter/test.nr
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ fn collapses_notes_at_the_beginning_of_the_array() {
opt_notes[5] = Option::some(build_valid_note(3));
opt_notes[8] = Option::some(build_valid_note(4));
opt_notes[13] = Option::some(build_valid_note(5));
opt_notes[21] = Option::some(build_valid_note(6));

let options = NoteGetterOptions::new();
let returned = constrain_get_notes_internal(&mut context, storage_slot, opt_notes, options);
Expand All @@ -89,7 +88,6 @@ fn collapses_notes_at_the_beginning_of_the_array() {
expected[3] = Option::some(build_valid_note(3));
expected[4] = Option::some(build_valid_note(4));
expected[5] = Option::some(build_valid_note(5));
expected[6] = Option::some(build_valid_note(6));

assert_equivalent_vec_and_array(returned, expected);
}
Expand Down

0 comments on commit a023367

Please sign in to comment.