diff options
author | Jan Tattermusch <jtattermusch@users.noreply.github.com> | 2015-12-08 22:44:21 -0800 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@users.noreply.github.com> | 2015-12-08 22:44:21 -0800 |
commit | 26e190f3ee7c259165ce12106172f3bd25b1e323 (patch) | |
tree | 13f09475cb6d2433c80eee2d75c9cec08339b118 /test | |
parent | 338ef4aa6cf39be4761b39b25ce5dec829af535b (diff) |
make test methods static void
Diffstat (limited to 'test')
-rw-r--r-- | test/core/support/string_test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/core/support/string_test.c b/test/core/support/string_test.c index b4024fb799..0ae930fa61 100644 --- a/test/core/support/string_test.c +++ b/test/core/support/string_test.c @@ -286,7 +286,7 @@ static void test_strsplit(void) { gpr_free(parts); } -test_ltoa() { +static void test_ltoa() { char *str; char buf[GPR_LTOA_MIN_BUFSIZE]; @@ -311,7 +311,7 @@ test_ltoa() { gpr_free(str); } -test_int64toa() { +static void test_int64toa() { char buf[GPR_INT64TOA_MIN_BUFSIZE]; LOG_TEST_NAME("test_int64toa"); |