Fixed boolean variable

pull/1678/head
murgatroid99 10 years ago
parent dbfe2f437c
commit 606129b655
  1. 4
      src/objective-c/examples/Sample/SampleTests/RemoteProtoTests.m

@ -275,7 +275,7 @@
// A buffered pipe to which we never write any value acts as a writer that just hangs.
GRXBufferedPipe *requestsBuffer = [[GRXBufferedPipe alloc] init];
__block bool receivedResponse = false;
__block BOOL receivedResponse = NO;
id request = [RMTStreamingOutputCallRequest messageWithPayloadSize:@21782
requestedResponseSize:@31415];
@ -294,7 +294,7 @@
XCTAssertNil(error, @"Finished with unexpected error: %@", error);
XCTAssertFalse(done, @"Finished without response");
XCTAssertNotNil(response);
receivedResponse = true;
receivedResponse = YES;
[call cancel];
}
}];

Loading…
Cancel
Save