Skip to content
Prev Previous commit
Next Next commit
clang format
  • Loading branch information
charlotteliang committed Feb 9, 2021
commit 69dac7dc2eeb2868c8aac1bc3fc606658f2d470c
3 changes: 2 additions & 1 deletion FirebaseMessaging/Sources/FIRMessagingUtilities.m
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ int64_t FIRMessagingCurrentTimestampInMilliseconds(void) {

uint64_t FIRMessagingGetFreeDiskSpaceInMB(void) {
NSError *error;
NSArray *paths = NSSearchPathForDirectoriesInDomains(FIRMessagingSupportedDirectory(), NSUserDomainMask, YES);
NSArray *paths =
NSSearchPathForDirectoriesInDomains(FIRMessagingSupportedDirectory(), NSUserDomainMask, YES);

NSDictionary *attributesMap =
[[NSFileManager defaultManager] attributesOfFileSystemForPath:[paths lastObject]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ - (void)tearDown {
}

#pragma mark - Method Swizzling Tests
#if !TARGET_OS_WATCH // TODO(chliangGoogle) Figure out why WKExtension is not recognized here.
#if !TARGET_OS_WATCH // TODO(chliangGoogle) Figure out why WKExtension is not recognized here.
- (void)testSwizzlingNonAppDelegate {
RandomObject *invalidAppDelegate = [[RandomObject alloc] init];
[[GULAppDelegateSwizzler sharedApplication]
Expand Down