Skip to content

Commit 1305e8f

Browse files
committed
fix last test
1 parent 963f1b3 commit 1305e8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/update.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ it("handles duplicates", async () => {
8181
expect(
8282
Object.fromEntries(
8383
Object.entries(groups)
84-
.filter(([id, g]) => id !== "undefined" && g.length > 1)
84+
.filter(([id, g]) => id !== "undefined" && id !== "null" && g.length > 1)
8585
.map(([id, g]) => [id, g.length]),
8686
),
8787
).toStrictEqual({})

0 commit comments

Comments
 (0)