@@ -1834,7 +1834,7 @@ - (void)testFetchAndActivateRolloutsNotifyInterop {
18341834 [self waitForExpectations: @[ notificationExpectation ] timeout: _expectationTimeout];
18351835}
18361836
1837- - (void )testSetCustomSingals {
1837+ - (void )testSetCustomSignals {
18381838 NSMutableArray <XCTestExpectation *> *expectations =
18391839 [[NSMutableArray alloc ] initWithCapacity: RCNTestRCNumTotalInstances];
18401840
@@ -1849,7 +1849,7 @@ - (void)testSetCustomSingals {
18491849 };
18501850
18511851 [_configInstances[i] setCustomSignals: testSignals
1852- WithCompletion : ^(NSError *_Nullable error) {
1852+ withCompletion : ^(NSError *_Nullable error) {
18531853 XCTAssertNil (error);
18541854 NSMutableDictionary <NSString *, NSString *> *retrievedSignals =
18551855 self->_configInstances [i].settings .customSignals ;
@@ -1889,11 +1889,11 @@ - (void)testSetCustomSignalsMultipleTimes {
18891889 };
18901890
18911891 [_configInstances[i] setCustomSignals: testSignals1
1892- WithCompletion : ^(NSError *_Nullable error) {
1892+ withCompletion : ^(NSError *_Nullable error) {
18931893 XCTAssertNil (error);
18941894 [_configInstances[i]
18951895 setCustomSignals: testSignals2
1896- WithCompletion : ^(NSError *_Nullable error) {
1896+ withCompletion : ^(NSError *_Nullable error) {
18971897 XCTAssertNil (error);
18981898 NSMutableDictionary <NSString *, NSString *> *retrievedSignals =
18991899 self->_configInstances [i].settings .customSignals ;
@@ -1927,19 +1927,19 @@ - (void)testSetCustomSignals_invalidInput_throwsException {
19271927
19281928 [_configInstances[i]
19291929 setCustomSignals: invalidSignals1
1930- WithCompletion : ^(NSError *_Nullable error) {
1930+ withCompletion : ^(NSError *_Nullable error) {
19311931 XCTAssertNotNil (error);
19321932 XCTAssertEqual (error.code , FIRRemoteConfigCustomSignalsErrorInvalidValueType);
19331933 }];
19341934 [_configInstances[i]
19351935 setCustomSignals: invalidSignals2
1936- WithCompletion : ^(NSError *_Nullable error) {
1936+ withCompletion : ^(NSError *_Nullable error) {
19371937 XCTAssertNotNil (error);
19381938 XCTAssertEqual (error.code , FIRRemoteConfigCustomSignalsErrorLimitExceeded);
19391939 }];
19401940 [_configInstances[i]
19411941 setCustomSignals: invalidSignals3
1942- WithCompletion : ^(NSError *_Nullable error) {
1942+ withCompletion : ^(NSError *_Nullable error) {
19431943 XCTAssertNotNil (error);
19441944 XCTAssertEqual (error.code , FIRRemoteConfigCustomSignalsErrorLimitExceeded);
19451945 [expectations[i] fulfill ];
0 commit comments