Skip to content

Commit

Permalink
chore(cloud_firestore): remove test that no longer applies (#13468)
Browse files Browse the repository at this point in the history
* chore(cloud_firestore): remove test that no longer applies

* chore(cloud_firestore: remove test that no longer applies
  • Loading branch information
SelaseKay authored Oct 7, 2024
1 parent 2bfb549 commit 29081a0
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions packages/cloud_firestore/cloud_firestore/test/query_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -157,11 +157,6 @@ void main() {
});

test('throws if multiple disjunctive filters in query', () {
expect(
() => query!
.where('foo', whereIn: [1, 2]).where('foo', whereIn: [2, 3]),
throwsAssertionError,
);
expect(
() => query!.where('foo', arrayContainsAny: [1]).where(
'foo',
Expand Down Expand Up @@ -223,12 +218,6 @@ void main() {
.where('foo', arrayContains: 2),
throwsAssertionError,
);
expect(
() => query!
.where('foo', arrayContains: 1)
.where('foo', whereIn: [2, 3]).where('foo', whereIn: [2, 3]),
throwsAssertionError,
);
});
});

Expand Down

0 comments on commit 29081a0

Please sign in to comment.