aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/tests
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2018-10-19 09:51:42 -0700
committerGravatar Muxi Yan <mxyan@google.com>2018-10-19 09:51:42 -0700
commit9925c13b2710a313d489fd040f0d7f312af0f1fc (patch)
treed68ddfff771c9f60d46c9e047cb99fc000ed0e8d /src/objective-c/tests
parent2a9efc3d1f0ddb42d0797dee5f82ca7abedc0936 (diff)
writeWithMessage->writeMessage
Diffstat (limited to 'src/objective-c/tests')
-rw-r--r--src/objective-c/tests/InteropTests.m6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/objective-c/tests/InteropTests.m b/src/objective-c/tests/InteropTests.m
index 1188a75df7..d38e1e0d97 100644
--- a/src/objective-c/tests/InteropTests.m
+++ b/src/objective-c/tests/InteropTests.m
@@ -501,7 +501,7 @@ BOOL isRemoteInteropTest(NSString *host) {
id request = [RMTStreamingOutputCallRequest
messageWithPayloadSize:requests[index]
requestedResponseSize:responses[index]];
- [call writeWithMessage:request];
+ [call writeMessage:request];
} else {
[call finish];
}
@@ -517,7 +517,7 @@ BOOL isRemoteInteropTest(NSString *host) {
[expectation fulfill];
}]
callOptions:options];
- [call writeWithMessage:request];
+ [call writeMessage:request];
[self waitForExpectationsWithTimeout:TEST_TIMEOUT handler:nil];
}
@@ -651,7 +651,7 @@ BOOL isRemoteInteropTest(NSString *host) {
}]
callOptions:options];
- [call writeWithMessage:request];
+ [call writeMessage:request];
[self waitForExpectationsWithTimeout:TEST_TIMEOUT handler:nil];
}