Skip to content

Commit d1437d9

Browse files
committed
Fix test - should be empty Map
1 parent bb3ff42 commit d1437d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/nested.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ describe("Nested Database", () => {
192192
await db.del(["a", "c"]);
193193

194194
const actual = await db.all();
195-
expect(actual).to.be.empty();
195+
expectNestedMapEqual(actual, new Map([["a", new Map()]]));
196196
});
197197

198198
it("add a nested value - list syntax", async () => {

0 commit comments

Comments
 (0)