aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/end2end
diff options
context:
space:
mode:
authorGravatar David Garcia Quintas <dgq@google.com>2015-06-22 22:39:21 -0700
committerGravatar David Garcia Quintas <dgq@google.com>2015-06-22 22:39:21 -0700
commitd16af0ea52a932ced7562e21d5ec8f57eafa51c5 (patch)
tree4175e880dacdb9a8b4eaeacbc4144df32cfc7310 /test/core/end2end
parent5927aec9b72dba7694218501e2f93d6c127776af (diff)
Redesign of compression algorithm propagation based on metadata
Diffstat (limited to 'test/core/end2end')
-rw-r--r--test/core/end2end/tests/request_with_compressed_payload.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/core/end2end/tests/request_with_compressed_payload.c b/test/core/end2end/tests/request_with_compressed_payload.c
index fe41780702..8cc4cb7fda 100644
--- a/test/core/end2end/tests/request_with_compressed_payload.c
+++ b/test/core/end2end/tests/request_with_compressed_payload.c
@@ -251,10 +251,10 @@ static void request_with_payload_template(
config.tear_down_data(&f);
}
-static void test_invoke_request_with_excepcionally_uncompressed_payload(
+static void test_invoke_request_with_exceptionally_uncompressed_payload(
grpc_end2end_test_config config) {
request_with_payload_template(
- config, "test_invoke_request_with_excepcionally_uncompressed_payload",
+ config, "test_invoke_request_with_exceptionally_uncompressed_payload",
GRPC_WRITE_NO_COMPRESS, GRPC_COMPRESS_LEVEL_HIGH, GRPC_COMPRESS_NONE);
}
@@ -276,7 +276,7 @@ static void test_invoke_request_with_uncompressed_payload(
void grpc_end2end_tests(grpc_end2end_test_config config) {
- test_invoke_request_with_excepcionally_uncompressed_payload(config);
+ test_invoke_request_with_exceptionally_uncompressed_payload(config);
test_invoke_request_with_compressed_payload(config);
test_invoke_request_with_uncompressed_payload(config);
}