Skip to content

Commit

Permalink
chore: Fixes test file from AztecProtocol#4205 (AztecProtocol#4216)
Browse files Browse the repository at this point in the history
Quickly fixing comments from AztecProtocol#4205
  • Loading branch information
sklppy88 authored Jan 25, 2024
1 parent 0a3553b commit 18a9b72
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions yarn-project/end-to-end/src/e2e_note_getter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function unwrapOptions<T>(options: NoirOption<T>[]): T[] {
return options.filter((option: any) => option._is_some).map((option: any) => option._value);
}

describe('e2e_singleton', () => {
describe('e2e_note_getter', () => {
let wallet: Wallet;

let teardown: () => Promise<void>;
Expand All @@ -27,8 +27,7 @@ describe('e2e_singleton', () => {

afterAll(() => teardown());

// Singleton tests:
it('a test that inserts note and checks if ', async () => {
it('inserts notes from 0-9, then makes multiple queries specifying the total suite of comparators', async () => {
const numbers = [...Array(10).keys()];
await Promise.all(numbers.map(number => contract.methods.insert_note(number).send().wait()));
await contract.methods.insert_note(5).send().wait();
Expand Down

0 comments on commit 18a9b72

Please sign in to comment.