We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2966cb0 commit c1944e1Copy full SHA for c1944e1
Crashlytics/UnitTests/FIRCLSExistingReportManagerTests.m
@@ -54,6 +54,11 @@ - (void)setUp {
54
55
self.fileManager = [[FIRCLSTempMockFileManager alloc] init];
56
57
+ // Cleanup potential artifacts from other test files.
58
+ if ([[NSFileManager defaultManager] fileExistsAtPath:[self.fileManager rootPath]]) {
59
+ assert([self.fileManager removeItemAtPath:[self.fileManager rootPath]]);
60
+ }
61
+
62
// Allow nil values only in tests
63
#pragma clang diagnostic push
64
#pragma clang diagnostic ignored "-Wnonnull"
0 commit comments