File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ - (void)testConfigure {
95
95
}
96
96
97
97
- (void )testConfigureWithOptions {
98
- // nil options
98
+ // nil options
99
99
#pragma clang diagnostic push
100
100
#pragma clang diagnostic ignored "-Wnonnull"
101
101
XCTAssertThrows ([FIRApp configureWithOptions: nil ]);
@@ -119,7 +119,7 @@ - (void)testConfigureWithOptions {
119
119
}
120
120
121
121
- (void )testConfigureWithCustomizedOptions {
122
- // valid customized options
122
+ // valid customized options
123
123
#pragma clang diagnostic push
124
124
#pragma clang diagnostic ignored "-Wnonnull"
125
125
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
@@ -194,7 +194,7 @@ - (void)testConfigureWithNameAndCustomizedOptions {
194
194
XCTAssertTrue ([FIRApp allApps ].count == 1 );
195
195
self.app = [FIRApp appNamed: kFIRTestAppName1 ];
196
196
197
- // Configure a different app with valid customized options
197
+ // Configure a different app with valid customized options
198
198
#pragma clang diagnostic push
199
199
#pragma clang diagnostic ignored "-Wnonnull"
200
200
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ - (void)testMessageCodeFormat {
148
148
// Lowercase should fail.
149
149
XCTAssertThrows (FIRLogError (kFIRLoggerCore , @" I-app000001" , @" Message." ));
150
150
151
- // nil or empty message code should fail.
151
+ // nil or empty message code should fail.
152
152
#pragma clang diagnostic push
153
153
#pragma clang diagnostic ignored "-Wnonnull"
154
154
XCTAssertThrows (FIRLogError (kFIRLoggerCore , nil , @" Message." ));
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ - (void)testInitCustomizedOptions {
111
111
XCTAssertEqualObjects (options2.deepLinkURLScheme , kDeepLinkURLScheme );
112
112
XCTAssertFalse (options.usingOptionsFromDefaultPlist );
113
113
114
- // nil GoogleAppID should throw an exception
114
+ // nil GoogleAppID should throw an exception
115
115
#pragma clang diagnostic push
116
116
#pragma clang diagnostic ignored "-Wnonnull"
117
117
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
Original file line number Diff line number Diff line change @@ -142,7 +142,8 @@ + (void)configureDefaultAppWithOptions:(FIROptions *)options
142
142
143
143
NSString *minVersion = info[@" MinimumOSVersion" ];
144
144
if ([minVersion hasPrefix: @" 7." ]) {
145
- FIRLogNotice (kFIRLoggerCore , @" I-COR000026" , @" Support for iOS 7 is deprecated and will "
145
+ FIRLogNotice (kFIRLoggerCore , @" I-COR000026" ,
146
+ @" Support for iOS 7 is deprecated and will "
146
147
@" stop working in the future. Please upgrade your app to target iOS 8 or "
147
148
@" above." );
148
149
}
You can’t perform that action at this time.
0 commit comments