diff options
Diffstat (limited to 'test/core/transport/timeout_encoding_test.c')
-rw-r--r-- | test/core/transport/timeout_encoding_test.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/core/transport/timeout_encoding_test.c b/test/core/transport/timeout_encoding_test.c index 23b1eb577b..10e1804995 100644 --- a/test/core/transport/timeout_encoding_test.c +++ b/test/core/transport/timeout_encoding_test.c @@ -88,8 +88,8 @@ void test_encoding(void) { static void assert_decodes_as(const char *buffer, gpr_timespec expected) { gpr_timespec got; gpr_log(GPR_INFO, "check decoding '%s'", buffer); - GPR_ASSERT(1 == grpc_http2_decode_timeout((const uint8_t *)buffer, - strlen(buffer), &got)); + GPR_ASSERT(1 == grpc_http2_decode_timeout( + grpc_slice_from_static_string(buffer), &got)); GPR_ASSERT(0 == gpr_time_cmp(got, expected)); } @@ -137,7 +137,8 @@ void test_decoding(void) { static void assert_decoding_fails(const char *s) { gpr_timespec x; - GPR_ASSERT(0 == grpc_http2_decode_timeout((const uint8_t *)s, strlen(s), &x)); + GPR_ASSERT(0 == + grpc_http2_decode_timeout(grpc_slice_from_static_string(s), &x)); } void test_decoding_fails(void) { |