Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions Crashlytics/UnitTests/Mocks/FIRCLSMockFileManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,7 @@ - (BOOL)removeItemAtPath:(NSString *)path {
// If we set up the expectation, and we went over the expected count or removes, fulfill the
// expectation
if (self.removeExpectation && self.removeCount >= self.expectedRemoveCount) {
dispatch_async(dispatch_get_main_queue(), ^{
[self.removeExpectation fulfill];
});
[self.removeExpectation fulfill];
}

return YES;
Expand Down
Loading