Skip to content

Commit f53340c

Browse files
committed
FIRQueryTests.mm: call [self setContinueAfterFailure:NO]
1 parent 425c03c commit f53340c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Firestore/Example/Tests/Integration/API/FIRQueryTests.mm

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1193,6 +1193,10 @@ - (void)testOrderByEquality {
11931193
}
11941194

11951195
- (void)testResumingAQueryShouldUseExistenceFilterToDetectDeletes {
1196+
// Set this test to stop when the first failure occurs because some test assertion failures make
1197+
// the rest of the test not applicable or will even crash.
1198+
[self setContinueAfterFailure:NO];
1199+
11961200
// Prepare the names and contents of the 100 documents to create.
11971201
NSMutableDictionary<NSString *, NSDictionary<NSString *, id> *> *testDocs =
11981202
[[NSMutableDictionary alloc] init];

0 commit comments

Comments
 (0)