Skip to content

Commit d86bcf9

Browse files
committed
fixes
1 parent b3be77b commit d86bcf9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Crashlytics/UnitTests/FIRCLSSettingsTests.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ - (void)cacheSettingsWithGoogleAppID:(NSString *)googleAppID
137137

138138
[self.settings cacheSettingsWithGoogleAppID:googleAppID currentTimestamp:currentTimestamp];
139139

140-
[self waitForExpectations:@[ expectation ] timeout:4.0];
140+
[self waitForExpectations:@[ expectation ] timeout:16.0];
141141
}
142142

143143
- (void)reloadFromCacheWithGoogleAppID:(NSString *)googleAppID
@@ -153,7 +153,7 @@ - (void)reloadFromCacheWithGoogleAppID:(NSString *)googleAppID
153153

154154
[self.settings reloadFromCacheWithGoogleAppID:googleAppID currentTimestamp:currentTimestamp];
155155

156-
[self waitForExpectations:@[ expectation ] timeout:6.0];
156+
[self waitForExpectations:@[ expectation ] timeout:14.0];
157157
}
158158

159159
- (void)testActivatedSettingsCached {

Crashlytics/UnitTests/Mocks/FIRCLSMockFileManager.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ - (void)enumerateFilesInDirectory:(NSString *)directory
9797

9898
// Skip files that start with a dot. This is important, because if you try to move a
9999
// .DS_Store file, it will fail if the target directory also has a .DS_Store file in
100-
// it. Plus, its wasteful, because we don't care about dot files.
100+
// it. Plus, it's wasteful, because we don't care about dot files.
101101
if ([path hasPrefix:@"."]) {
102102
continue;
103103
}

0 commit comments

Comments
 (0)