Skip to content

Commit 654075e

Browse files
committed
modify test description
1 parent 0b5c3c5 commit 654075e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/firestore/test/lite/integration.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2132,7 +2132,7 @@ describe('countQuery()', () => {
21322132
});
21332133
});
21342134

2135-
it('aggregateQueryEqual returns true on same queries', () => {
2135+
it('aggregateQueryEqual on same queries', () => {
21362136
return withTestCollectionAndInitialData(testDocs, async collection => {
21372137
const query1 = query(collection, where('author', '==', 'authorA'));
21382138
const query2 = query(collection, where('author', '==', 'authorA'));
@@ -2142,7 +2142,7 @@ describe('countQuery()', () => {
21422142
});
21432143
});
21442144

2145-
it('aggregateQueryEqual returns false on different queries', () => {
2145+
it('aggregateQueryEqual on different queries', () => {
21462146
return withTestCollectionAndInitialData(testDocs, async collection => {
21472147
const query1 = query(collection, where('author', '==', 'authorA'));
21482148
const query2 = query(collection, where('author', '==', 'authorB'));
@@ -2152,7 +2152,7 @@ describe('countQuery()', () => {
21522152
});
21532153
});
21542154

2155-
it('aggregateQuerySnapshotEqual returns true on same queries', () => {
2155+
it('aggregateQuerySnapshotEqual on same queries', () => {
21562156
return withTestCollectionAndInitialData(testDocs, async collection => {
21572157
const query1 = query(collection, where('author', '==', 'authorA'));
21582158
const query2 = query(collection, where('author', '==', 'authorA'));
@@ -2167,7 +2167,7 @@ describe('countQuery()', () => {
21672167
});
21682168
});
21692169

2170-
it('aggregateQuerySnapshotEqual returns false on different queries', () => {
2170+
it('aggregateQuerySnapshotEqual on different queries', () => {
21712171
return withTestCollectionAndInitialData(testDocs, async collection => {
21722172
const query1 = query(collection, where('author', '==', 'authorA'));
21732173
const query2 = query(collection, where('author', '==', 'authorB'));

0 commit comments

Comments
 (0)