Skip to content

Commit 18a9b72

Browse files
authored
chore: Fixes test file from AztecProtocol#4205 (AztecProtocol#4216)
Quickly fixing comments from AztecProtocol#4205
1 parent 0a3553b commit 18a9b72

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

yarn-project/end-to-end/src/e2e_note_getter.test.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function unwrapOptions<T>(options: NoirOption<T>[]): T[] {
1212
return options.filter((option: any) => option._is_some).map((option: any) => option._value);
1313
}
1414

15-
describe('e2e_singleton', () => {
15+
describe('e2e_note_getter', () => {
1616
let wallet: Wallet;
1717

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

2828
afterAll(() => teardown());
2929

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

0 commit comments

Comments
 (0)