From da3ef80b3a6cff9c1c08d62a94e110e6733ca7fd Mon Sep 17 00:00:00 2001 From: Maddiaa0 <47148561+Maddiaa0@users.noreply.github.com> Date: Fri, 13 Dec 2024 07:54:36 +0000 Subject: [PATCH] fmt --- yarn-project/kv-store/src/lmdb/map.test.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/yarn-project/kv-store/src/lmdb/map.test.ts b/yarn-project/kv-store/src/lmdb/map.test.ts index 2688f1f71b66..0ddc616123c7 100644 --- a/yarn-project/kv-store/src/lmdb/map.test.ts +++ b/yarn-project/kv-store/src/lmdb/map.test.ts @@ -1,7 +1,8 @@ +import { expect } from 'chai'; + +import { type AztecMapWithSize, type AztecMultiMapWithSize } from '../interfaces/map.js'; import { describeAztecMap } from '../interfaces/map_test_suite.js'; import { openTmpStore } from './index.js'; -import { AztecMapWithSize, AztecMultiMapWithSize } from '../interfaces/map.js'; -import { expect } from 'chai'; describe('LMDBMap', () => { describeAztecMap('Sync AztecMap', () => openTmpStore(true));