Skip to content

Commit 94139cb

Browse files
committed
Deduplicate test
1 parent 301d018 commit 94139cb

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

test/nested.spec.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -177,10 +177,7 @@ describe("Nested Database", () => {
177177
});
178178

179179
it("get an inexisting nested key", async () => {
180-
await db.put("b/c", "test");
181-
await db.del("b/c");
182-
183-
const actual = await db.get("b/c");
180+
const actual = await db.get("b/d");
184181
expect(actual).to.be.undefined();
185182
});
186183

0 commit comments

Comments
 (0)