Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
spalladino committed Mar 27, 2024
1 parent 77b2d56 commit a76a4d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yarn-project/kv-store/src/lmdb/map.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ describe('LmdbAztecMap', () => {
await map.set('foo', 'bar');
await map.set('baz', 'qux');

expect(await map.delete('foo')).toEqual(true);
await map.delete('foo');

expect(map.get('foo')).toEqual(undefined);
expect(map.get('baz')).toEqual('qux');
Expand Down

0 comments on commit a76a4d7

Please sign in to comment.