@@ -277,9 +277,8 @@ describeSpec('Existence Filters:', [], () => {
277
277
*/
278
278
specTest (
279
279
'Full re-query is skipped when bloom filter can identify documents deleted' ,
280
- // TODO(b/278759194) Remove 'no-android' once bloom filter is merged.
281
280
// TODO(b/278759251) Remove 'no-ios' once bloom filter is merged.
282
- [ 'no-ios' , 'no-android' ] ,
281
+ [ 'no-ios' ] ,
283
282
( ) => {
284
283
const query1 = query ( 'collection' ) ;
285
284
const docA = doc ( 'collection/a' , 1000 , { v : 1 } ) ;
@@ -311,9 +310,8 @@ describeSpec('Existence Filters:', [], () => {
311
310
312
311
specTest (
313
312
'Full re-query is triggered when bloom filter can not identify documents deleted' ,
314
- // TODO(b/278759194) Remove 'no-android' once bloom filter is merged.
315
313
// TODO(b/278759251) Remove 'no-ios' once bloom filter is merged.
316
- [ 'no-ios' , 'no-android' ] ,
314
+ [ 'no-ios' ] ,
317
315
( ) => {
318
316
const query1 = query ( 'collection' ) ;
319
317
const docA = doc ( 'collection/a' , 1000 , { v : 1 } ) ;
@@ -345,9 +343,8 @@ describeSpec('Existence Filters:', [], () => {
345
343
346
344
specTest (
347
345
'Bloom filter can process special characters in document name' ,
348
- // TODO(b/278759194) Remove 'no-android' once bloom filter is merged.
349
346
// TODO(b/278759251) Remove 'no-ios' once bloom filter is merged.
350
- [ 'no-ios' , 'no-android' ] ,
347
+ [ 'no-ios' ] ,
351
348
( ) => {
352
349
const query1 = query ( 'collection' ) ;
353
350
const docA = doc ( 'collection/ÀÒ∑' , 1000 , { v : 1 } ) ;
@@ -375,9 +372,8 @@ describeSpec('Existence Filters:', [], () => {
375
372
376
373
specTest (
377
374
'Bloom filter fills in default values for undefined padding and hashCount' ,
378
- // TODO(b/278759194) Remove 'no-android' once bloom filter is merged.
379
375
// TODO(b/278759251) Remove 'no-ios' once bloom filter is merged.
380
- [ 'no-ios' , 'no-android' ] ,
376
+ [ 'no-ios' ] ,
381
377
( ) => {
382
378
const query1 = query ( 'collection' ) ;
383
379
const docA = doc ( 'collection/a' , 1000 , { v : 1 } ) ;
@@ -449,9 +445,8 @@ describeSpec('Existence Filters:', [], () => {
449
445
450
446
specTest (
451
447
'Full re-query is triggered when bloom filter hashCount is invalid' ,
452
- // TODO(b/278759194) Remove 'no-android' once bloom filter is merged.
453
448
// TODO(b/278759251) Remove 'no-ios' once bloom filter is merged.
454
- [ 'no-ios' , 'no-android' ] ,
449
+ [ 'no-ios' ] ,
455
450
( ) => {
456
451
const query1 = query ( 'collection' ) ;
457
452
const docA = doc ( 'collection/a' , 1000 , { v : 1 } ) ;
@@ -485,9 +480,8 @@ describeSpec('Existence Filters:', [], () => {
485
480
486
481
specTest (
487
482
'Full re-query is triggered when bloom filter is empty' ,
488
- // TODO(b/278759194) Remove 'no-android' once bloom filter is merged.
489
483
// TODO(b/278759251) Remove 'no-ios' once bloom filter is merged.
490
- [ 'no-ios' , 'no-android' ] ,
484
+ [ 'no-ios' ] ,
491
485
( ) => {
492
486
const query1 = query ( 'collection' ) ;
493
487
const docA = doc ( 'collection/a' , 1000 , { v : 1 } ) ;
@@ -522,9 +516,8 @@ describeSpec('Existence Filters:', [], () => {
522
516
523
517
specTest (
524
518
'Same documents can have different bloom filters' ,
525
- // TODO(b/278759194) Remove 'no-android' once bloom filter is merged.
526
519
// TODO(b/278759251) Remove 'no-ios' once bloom filter is merged.
527
- [ 'no-ios' , 'no-android' ] ,
520
+ [ 'no-ios' ] ,
528
521
( ) => {
529
522
const query1 = query ( 'collection' , filter ( 'v' , '<=' , 2 ) ) ;
530
523
const query2 = query ( 'collection' , filter ( 'v' , '>=' , 2 ) ) ;
@@ -574,9 +567,8 @@ describeSpec('Existence Filters:', [], () => {
574
567
575
568
specTest (
576
569
'Bloom filter is handled at global snapshot' ,
577
- // TODO(b/278759194) Remove 'no-android' once bloom filter is merged.
578
570
// TODO(b/278759251) Remove 'no-ios' once bloom filter is merged.
579
- [ 'no-ios' , 'no-android' ] ,
571
+ [ 'no-ios' ] ,
580
572
( ) => {
581
573
const query1 = query ( 'collection' ) ;
582
574
const docA = doc ( 'collection/a' , 1000 , { v : 1 } ) ;
@@ -608,9 +600,8 @@ describeSpec('Existence Filters:', [], () => {
608
600
609
601
specTest (
610
602
'Bloom filter limbo resolution is denied' ,
611
- // TODO(b/278759194) Remove 'no-android' once bloom filter is merged.
612
603
// TODO(b/278759251) Remove 'no-ios' once bloom filter is merged.
613
- [ 'no-ios' , 'no-android' ] ,
604
+ [ 'no-ios' ] ,
614
605
( ) => {
615
606
const query1 = query ( 'collection' ) ;
616
607
const docA = doc ( 'collection/a' , 1000 , { v : 1 } ) ;
@@ -640,9 +631,8 @@ describeSpec('Existence Filters:', [], () => {
640
631
641
632
specTest (
642
633
'Bloom filter with large size works as expected' ,
643
- // TODO(b/278759194) Remove 'no-android' once bloom filter is merged.
644
634
// TODO(b/278759251) Remove 'no-ios' once bloom filter is merged.
645
- [ 'no-ios' , 'no-android' ] ,
635
+ [ 'no-ios' ] ,
646
636
( ) => {
647
637
const query1 = query ( 'collection' ) ;
648
638
const docs = [ ] ;
0 commit comments