Skip to content
Snippets Groups Projects
Commit d3ce0218 authored by David Garcia Quintas's avatar David Garcia Quintas
Browse files

disabled bogus checks for streaming compressed

parent 14f40b8b
No related branches found
No related tags found
No related merge requests found
...@@ -488,12 +488,7 @@ bool InteropClient::DoResponseCompressedStreaming() { ...@@ -488,12 +488,7 @@ bool InteropClient::DoResponseCompressedStreaming() {
grpc::string(response_stream_sizes[k], '\0')); grpc::string(response_stream_sizes[k], '\0'));
break; break;
case PayloadType::UNCOMPRESSABLE: { case PayloadType::UNCOMPRESSABLE: {
std::ifstream rnd_file(kRandomFile); break;
GPR_ASSERT(rnd_file.good());
for (int n = 0; n < response_stream_sizes[k]; n++) {
GPR_ASSERT(response.payload().body()[n] == (char)rnd_file.get());
}
} break;
default: default:
GPR_ASSERT(false); GPR_ASSERT(false);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment