diff options
author | Sree Kuchibhotla <sreek@google.com> | 2015-12-08 13:59:16 -0800 |
---|---|---|
committer | Sree Kuchibhotla <sreek@google.com> | 2015-12-08 13:59:16 -0800 |
commit | f99dbf5d08290b141946ac8e728337c3047cbcbe (patch) | |
tree | 542ec0dcf49c984ffccd43e20876dbd47f4b18a3 /test/core/support | |
parent | 38d39f4622bf3714aa58e386be9d489190fe8bda (diff) |
Remove gpr_slice_to_cstring as it is not used anywhere
Diffstat (limited to 'test/core/support')
-rw-r--r-- | test/core/support/slice_test.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/core/support/slice_test.c b/test/core/support/slice_test.c index 96070d5bc8..9e0e22c24b 100644 --- a/test/core/support/slice_test.c +++ b/test/core/support/slice_test.c @@ -221,7 +221,6 @@ static void test_slice_from_copied_string_works(void) { LOG_TEST_NAME("test_slice_from_copied_string_works"); slice = gpr_slice_from_copied_string(text); - gpr_log(GPR_INFO, "slice: %s", gpr_slice_to_cstring(slice)); GPR_ASSERT(strlen(text) == GPR_SLICE_LENGTH(slice)); GPR_ASSERT(0 == memcmp(text, GPR_SLICE_START_PTR(slice), GPR_SLICE_LENGTH(slice))); |