File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/firestore/test/integration/api Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2186,13 +2186,13 @@ apiDescribe('Queries', (persistence: boolean) => {
2186
2186
expect ( bloomFilter . padding , 'bloomFilterPadding' ) . to . be . below ( 8 ) ;
2187
2187
2188
2188
// Verify that the bloom filter was successfully used to avert a full
2189
- // request . If a false positive occurred then retry the entire test.
2189
+ // requery . If a false positive occurred then retry the entire test.
2190
2190
// Although statistically rare, false positives are expected to happen
2191
2191
// occasionally. When a false positive _does_ happen, just retry the test
2192
2192
// with a different set of documents. If that retry _also_ experiences a
2193
2193
// false positive, then fail the test because that is so improbable that
2194
2194
// something must have gone wrong.
2195
- if ( attemptNumber > 1 && ! bloomFilter . applied ) {
2195
+ if ( attemptNumber === 1 && ! bloomFilter . applied ) {
2196
2196
return 'retry' ;
2197
2197
}
2198
2198
expect (
You can’t perform that action at this time.
0 commit comments