Skip to content
Snippets Groups Projects
Commit 51d22752 authored by vjpai's avatar vjpai
Browse files

Switch an int to size_t or else it fails on Mac

parent 7e06b6ff
No related branches found
No related tags found
No related merge requests found
......@@ -797,7 +797,7 @@ TEST_F(End2endTest, HugeResponse) {
EchoRequest request;
EchoResponse response;
request.set_message("huge response");
const int kResponseSize = 1024 * (1024 + 10);
const size_t kResponseSize = 1024 * (1024 + 10);
request.mutable_param()->set_response_message_length(kResponseSize);
ClientContext context;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment