aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2015-12-08 22:44:21 -0800
committerGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2015-12-08 22:44:21 -0800
commit26e190f3ee7c259165ce12106172f3bd25b1e323 (patch)
tree13f09475cb6d2433c80eee2d75c9cec08339b118 /test
parent338ef4aa6cf39be4761b39b25ce5dec829af535b (diff)
make test methods static void
Diffstat (limited to 'test')
-rw-r--r--test/core/support/string_test.c4
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");