diff options
author | Jorge Canizales <jcanizales@google.com> | 2015-03-23 22:18:45 -0700 |
---|---|---|
committer | Jorge Canizales <jcanizales@google.com> | 2015-04-21 18:29:58 -0700 |
commit | e72114cc9cf52988bef274da2c29dda3bee0ffb1 (patch) | |
tree | 6cba0fd05776c4ae3c06813fb7d3fc235e76b684 | |
parent | eddb0065c12bd0f3ac23e36147cba84e5a0755b5 (diff) |
Fixes local test after ensuring using https:// doesn't work with it.
-rw-r--r-- | src/objective-c/examples/Sample/SampleTests/SampleTests.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/objective-c/examples/Sample/SampleTests/SampleTests.m b/src/objective-c/examples/Sample/SampleTests/SampleTests.m index 322a592887..6d6875c233 100644 --- a/src/objective-c/examples/Sample/SampleTests/SampleTests.m +++ b/src/objective-c/examples/Sample/SampleTests/SampleTests.m @@ -116,7 +116,7 @@ RGDPoint *point = [[[[[RGDPointBuilder alloc] init] setLatitude:28E7] setLongitude:-15E7] build]; id<GRXWriter> requestsWriter = [GRXWriter writerWithValue:[point data]]; - GRPCCall *call = [[GRPCCall alloc] initWithHost:@"https://127.0.0.1:8980" + GRPCCall *call = [[GRPCCall alloc] initWithHost:@"http://127.0.0.1:8980" method:method requestsWriter:requestsWriter]; |