Skip to content
Snippets Groups Projects
Commit 1fedc800 authored by Yang Gao's avatar Yang Gao
Browse files

Merge pull request #2655 from vjpai/expecteq

Switch an int to size_t or else it fails on Mac
parents e08cc80e 51d22752
No related branches found
No related tags found
No related merge requests found
...@@ -809,7 +809,7 @@ TEST_F(End2endTest, HugeResponse) { ...@@ -809,7 +809,7 @@ TEST_F(End2endTest, HugeResponse) {
EchoRequest request; EchoRequest request;
EchoResponse response; EchoResponse response;
request.set_message("huge 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); request.mutable_param()->set_response_message_length(kResponseSize);
ClientContext context; 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