Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
paulb777 committed Apr 3, 2024
1 parent c17e290 commit 9fde0ef
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions FirebaseCore/Tests/Unit/FIROptionsTest.m
Original file line number Diff line number Diff line change
Expand Up @@ -638,11 +638,10 @@ - (void)testVersionConsistency2 {
NSRange major = NSMakeRange(0, 2);
NSRange minor = NSMakeRange(2, 2);
NSRange patch = NSMakeRange(4, 2);
NSString *str =
[NSString stringWithFormat:@"%d.%d.%d",
[[kFIRLibraryVersionID substringWithRange:major] intValue],
[[kFIRLibraryVersionID substringWithRange:minor] intValue],
[[kFIRLibraryVersionID substringWithRange:patch] intValue]];
NSString *str = [NSString
stringWithFormat:@"%d.%d.%d", [[kFIRLibraryVersionID substringWithRange:major] intValue],
[[kFIRLibraryVersionID substringWithRange:minor] intValue],
[[kFIRLibraryVersionID substringWithRange:patch] intValue]];
XCTAssertTrue([FIRFirebaseVersion() hasPrefix:str]);
}

Expand Down

0 comments on commit 9fde0ef

Please sign in to comment.