aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/compression/algorithm_test.cc
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2017-12-06 22:09:36 -0800
committerGravatar Muxi Yan <mxyan@google.com>2017-12-06 22:09:36 -0800
commit67454d71e833a7704d61e673ad32e71dd31c868a (patch)
treefe720c5bb8388a02ed334b0b0c071c0f7b895b31 /test/core/compression/algorithm_test.cc
parentfc38142db69cd8c95f3c55a296b4e73b04c720c3 (diff)
parentb0bad8f3864dc9c8745736fe68efe513b2b84932 (diff)
Merge commit 'b0bad8f' into fix-stream-compression-config-interface
Diffstat (limited to 'test/core/compression/algorithm_test.cc')
-rw-r--r--test/core/compression/algorithm_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/core/compression/algorithm_test.cc b/test/core/compression/algorithm_test.cc
index a0ed7dbc98..275b60b08f 100644
--- a/test/core/compression/algorithm_test.cc
+++ b/test/core/compression/algorithm_test.cc
@@ -87,11 +87,11 @@ static void test_algorithm_failure(void) {
gpr_log(GPR_DEBUG, "test_algorithm_failure");
GPR_ASSERT(grpc_compression_algorithm_name(GRPC_COMPRESS_ALGORITHMS_COUNT,
- NULL) == 0);
+ nullptr) == 0);
GPR_ASSERT(
grpc_compression_algorithm_name(static_cast<grpc_compression_algorithm>(
GRPC_COMPRESS_ALGORITHMS_COUNT + 1),
- NULL) == 0);
+ nullptr) == 0);
mdstr = grpc_slice_from_static_string("this-is-an-invalid-algorithm");
GPR_ASSERT(grpc_compression_algorithm_from_slice(mdstr) ==
GRPC_COMPRESS_ALGORITHMS_COUNT);