Skip to content

Commit de7eead

Browse files
committed
Lintfix on tests/DB.test.ts
1 parent 0a0901d commit de7eead

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/DB.test.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -394,9 +394,7 @@ describe(DB.name, () => {
394394
const db = await DB.createDB({ dbPath, crypto, logger });
395395
const keys: Array<Array<Buffer>> = Array.from({ length: 100 }, () =>
396396
Array.from({ length: testUtils.getRandomInt(0, 11) }, () =>
397-
nodeCrypto.randomBytes(
398-
testUtils.getRandomInt(0, 11)
399-
),
397+
nodeCrypto.randomBytes(testUtils.getRandomInt(0, 11)),
400398
),
401399
);
402400
for (const k of keys) {

0 commit comments

Comments
 (0)