@@ -1138,10 +1138,10 @@ - (void)testVerifyClient {
1138
1138
});
1139
1139
});
1140
1140
// Mock receiving of push notification.
1141
- OCMExpect ([[ _mockAppCredentialManager ignoringNonObjectArgs ]
1142
- didStartVerificationWithReceipt: OCMOCK_ANY
1143
- timeout: 0
1144
- callback: OCMOCK_ANY] )
1141
+ OCMExpect ([_mockAppCredentialManager didStartVerificationWithReceipt: OCMOCK_ANY
1142
+ timeout: 0
1143
+ callback: OCMOCK_ANY])
1144
+ . ignoringNonObjectArgs ( )
1145
1145
.andCallIdDoubleIdBlock (^(NSString *receipt, NSTimeInterval timeout,
1146
1146
FIRAuthAppCredentialCallback callback) {
1147
1147
XCTAssertEqualObjects (receipt, kTestReceipt );
@@ -1254,10 +1254,10 @@ - (void)testSendVerificationCodeFailedRetry {
1254
1254
});
1255
1255
1256
1256
// Mock receiving of push notification.
1257
- OCMStub ([[ _mockAppCredentialManager ignoringNonObjectArgs ]
1258
- didStartVerificationWithReceipt: OCMOCK_ANY
1259
- timeout: 0
1260
- callback: OCMOCK_ANY] )
1257
+ OCMStub ([_mockAppCredentialManager didStartVerificationWithReceipt: OCMOCK_ANY
1258
+ timeout: 0
1259
+ callback: OCMOCK_ANY])
1260
+ . ignoringNonObjectArgs ( )
1261
1261
.andCallIdDoubleIdBlock (^(NSString *receipt, NSTimeInterval timeout,
1262
1262
FIRAuthAppCredentialCallback callback) {
1263
1263
XCTAssertEqualObjects (receipt, kTestReceipt );
@@ -1359,10 +1359,10 @@ - (void)testSendVerificationCodeSuccessFulRetry {
1359
1359
});
1360
1360
1361
1361
// Mock receiving of push notification.
1362
- OCMStub ([[ _mockAppCredentialManager ignoringNonObjectArgs ]
1363
- didStartVerificationWithReceipt: OCMOCK_ANY
1364
- timeout: 0
1365
- callback: OCMOCK_ANY] )
1362
+ OCMStub ([_mockAppCredentialManager didStartVerificationWithReceipt: OCMOCK_ANY
1363
+ timeout: 0
1364
+ callback: OCMOCK_ANY])
1365
+ . ignoringNonObjectArgs ( )
1366
1366
.andCallIdDoubleIdBlock (^(NSString *receipt, NSTimeInterval timeout,
1367
1367
FIRAuthAppCredentialCallback callback) {
1368
1368
XCTAssertEqualObjects (receipt, kTestReceipt );
0 commit comments