@@ -2132,7 +2132,7 @@ describe('countQuery()', () => {
2132
2132
} ) ;
2133
2133
} ) ;
2134
2134
2135
- it ( 'aggregateQueryEqual returns true on same queries' , ( ) => {
2135
+ it ( 'aggregateQueryEqual on same queries' , ( ) => {
2136
2136
return withTestCollectionAndInitialData ( testDocs , async collection => {
2137
2137
const query1 = query ( collection , where ( 'author' , '==' , 'authorA' ) ) ;
2138
2138
const query2 = query ( collection , where ( 'author' , '==' , 'authorA' ) ) ;
@@ -2142,7 +2142,7 @@ describe('countQuery()', () => {
2142
2142
} ) ;
2143
2143
} ) ;
2144
2144
2145
- it ( 'aggregateQueryEqual returns false on different queries' , ( ) => {
2145
+ it ( 'aggregateQueryEqual on different queries' , ( ) => {
2146
2146
return withTestCollectionAndInitialData ( testDocs , async collection => {
2147
2147
const query1 = query ( collection , where ( 'author' , '==' , 'authorA' ) ) ;
2148
2148
const query2 = query ( collection , where ( 'author' , '==' , 'authorB' ) ) ;
@@ -2152,7 +2152,7 @@ describe('countQuery()', () => {
2152
2152
} ) ;
2153
2153
} ) ;
2154
2154
2155
- it ( 'aggregateQuerySnapshotEqual returns true on same queries' , ( ) => {
2155
+ it ( 'aggregateQuerySnapshotEqual on same queries' , ( ) => {
2156
2156
return withTestCollectionAndInitialData ( testDocs , async collection => {
2157
2157
const query1 = query ( collection , where ( 'author' , '==' , 'authorA' ) ) ;
2158
2158
const query2 = query ( collection , where ( 'author' , '==' , 'authorA' ) ) ;
@@ -2167,7 +2167,7 @@ describe('countQuery()', () => {
2167
2167
} ) ;
2168
2168
} ) ;
2169
2169
2170
- it ( 'aggregateQuerySnapshotEqual returns false on different queries' , ( ) => {
2170
+ it ( 'aggregateQuerySnapshotEqual on different queries' , ( ) => {
2171
2171
return withTestCollectionAndInitialData ( testDocs , async collection => {
2172
2172
const query1 = query ( collection , where ( 'author' , '==' , 'authorA' ) ) ;
2173
2173
const query2 = query ( collection , where ( 'author' , '==' , 'authorB' ) ) ;
0 commit comments