summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjmkiley <jordan.kiley@mapbox.com>2019-07-12 15:13:07 -0700
committerjmkiley <jordan.kiley@mapbox.com>2019-07-12 15:13:07 -0700
commit14cd4c94ce9ad510ce4c12172d49a4470fee5d6d (patch)
tree5f92e0af3f1e11f16c64b4fa0d89cb392e363d02
parentfcb007f9f43becc285e811d9c4836f036b1f9cec (diff)
downloadqtlocation-mapboxgl-14cd4c94ce9ad510ce4c12172d49a4470fee5d6d.tar.gz
[ios] lower wait time
-rw-r--r--platform/darwin/test/MGLOfflineStorageTests.mm8
1 files changed, 4 insertions, 4 deletions
diff --git a/platform/darwin/test/MGLOfflineStorageTests.mm b/platform/darwin/test/MGLOfflineStorageTests.mm
index 4bb9bc6776..ee4bcc2c65 100644
--- a/platform/darwin/test/MGLOfflineStorageTests.mm
+++ b/platform/darwin/test/MGLOfflineStorageTests.mm
@@ -233,7 +233,7 @@
[expectation fulfill];
}];
- [self waitForExpectationsWithTimeout:30 handler:nil];
+ [self waitForExpectationsWithTimeout:10 handler:nil];
}
- (void)testInvalidateAmbientCache {
@@ -242,7 +242,7 @@
XCTAssertNil(error);
[expectation fulfill];
}];
- [self waitForExpectationsWithTimeout:20 handler:nil];
+ [self waitForExpectationsWithTimeout:10 handler:nil];
}
- (void)testClearCache {
@@ -251,7 +251,7 @@
XCTAssertNil(error);
[expectation fulfill];
}];
- [self waitForExpectationsWithTimeout:20 handler:nil];
+ [self waitForExpectationsWithTimeout:10 handler:nil];
}
- (void)testResetDatabase {
@@ -260,7 +260,7 @@
XCTAssertNil(error);
[expectation fulfill];
}];
- [self waitForExpectationsWithTimeout:20 handler:nil];
+ [self waitForExpectationsWithTimeout:10 handler:nil];
}
- (void)testBackupExclusion {