Skip to content

Commit 2708307

Browse files
Fix spec test versions (#2098)
1 parent 4d0d246 commit 2708307

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/firestore/test/unit/specs/limbo_spec.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ describeSpec('Limbo Documents:', [], () => {
9090
filter('key', '==', 'a')
9191
);
9292
const doc1a = doc('collection/a', 1000, { key: 'a' });
93-
const doc1b = doc('collection/a', 1000, { key: 'b' });
93+
const doc1b = doc('collection/a', 1002, { key: 'b' });
9494
const limboQuery = Query.atPath(doc1a.key.path);
9595
return (
9696
spec()
@@ -128,7 +128,7 @@ describeSpec('Limbo Documents:', [], () => {
128128
filter('key', '==', 'b')
129129
);
130130
const doc1a = doc('collection/a', 1000, { key: 'a' });
131-
const doc1b = doc('collection/a', 1000, { key: 'b' });
131+
const doc1b = doc('collection/a', 1002, { key: 'b' });
132132
const limboQuery = Query.atPath(doc1a.key.path);
133133
return (
134134
spec()

0 commit comments

Comments
 (0)