Skip to content

Commit 5ccddc9

Browse files
committed
fix tests to accomodate for backend changes to multiple sort stages
1 parent 11ef64b commit 5ccddc9

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

packages/firestore/test/integration/api/pipeline.test.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1218,7 +1218,6 @@ const timestampDeltaMS = 1000;
12181218
.select('title', 'author')
12191219
.sort(field('author').ascending())
12201220
.removeFields(field('author'))
1221-
.sort(field('author').ascending())
12221221
);
12231222
expectResults(
12241223
snapshot,
@@ -1259,7 +1258,6 @@ const timestampDeltaMS = 1000;
12591258
.removeFields({
12601259
fields: [field('author'), 'genre']
12611260
})
1262-
.sort(field('author').ascending())
12631261
);
12641262
expectResults(
12651263
snapshot,
@@ -1300,7 +1298,6 @@ const timestampDeltaMS = 1000;
13001298
.select('title', 'author')
13011299
.sort(field('author').ascending())
13021300
.removeFields(field('author'))
1303-
.sort(field('author').ascending())
13041301
);
13051302
expectResults(
13061303
snapshot,
@@ -1341,7 +1338,6 @@ const timestampDeltaMS = 1000;
13411338
.removeFields({
13421339
fields: [field('author'), 'genre']
13431340
})
1344-
.sort(field('author').ascending())
13451341
);
13461342
expectResults(
13471343
snapshot,

0 commit comments

Comments
 (0)