diff options
author | David Garcia Quintas <dgq@google.com> | 2016-05-17 11:38:45 -0700 |
---|---|---|
committer | David Garcia Quintas <dgq@google.com> | 2016-05-17 11:38:45 -0700 |
commit | af1c7e4f06b3b490fef6dd75669c92cc71acb8c7 (patch) | |
tree | b439fa22e9890afdcf594daa412725a7144b3c72 /test/core/end2end | |
parent | 73dcbda5b006fac4651480f7692b30db993b79b9 (diff) |
INTERNAL -> UNIMPLEMENTED for disabled algorithms
Diffstat (limited to 'test/core/end2end')
-rw-r--r-- | test/core/end2end/tests/compressed_payload.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/core/end2end/tests/compressed_payload.c b/test/core/end2end/tests/compressed_payload.c index b713d399c0..1c58d4d0b1 100644 --- a/test/core/end2end/tests/compressed_payload.c +++ b/test/core/end2end/tests/compressed_payload.c @@ -496,11 +496,11 @@ static void test_invoke_request_with_compressed_payload_md_override( GRPC_COMPRESS_DEFLATE, GRPC_COMPRESS_NONE, &none_compression_override); } -static void test_invoke_request_with_invalid_algorithm( +static void test_invoke_request_with_disabled_algorithm( grpc_end2end_test_config config) { request_for_disabled_algorithm( - config, "test_invoke_request_with_invalid_algorithm", 0, - GRPC_COMPRESS_GZIP, GRPC_COMPRESS_GZIP, GRPC_STATUS_INTERNAL, NULL); + config, "test_invoke_request_with_disabled_algorithm", 0, + GRPC_COMPRESS_GZIP, GRPC_COMPRESS_GZIP, GRPC_STATUS_UNIMPLEMENTED, NULL); } void compressed_payload(grpc_end2end_test_config config) { @@ -508,7 +508,7 @@ void compressed_payload(grpc_end2end_test_config config) { test_invoke_request_with_uncompressed_payload(config); test_invoke_request_with_compressed_payload(config); test_invoke_request_with_compressed_payload_md_override(config); - test_invoke_request_with_invalid_algorithm(config); + test_invoke_request_with_disabled_algorithm(config); } void compressed_payload_pre_init(void) {} |