From: Matthew Fernandez Date: Thu, 24 Feb 2022 05:29:50 +0000 (-0800) Subject: cgraph: [nfc] reflow test_itos.c X-Git-Tag: 4.0.0~203^2~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e531d5de0f8c577a04084d78dc7a83812c93a4a0;p=graphviz cgraph: [nfc] reflow test_itos.c --- diff --git a/lib/cgraph/test_itos.c b/lib/cgraph/test_itos.c index 842bf59d5..d6d604d98 100644 --- a/lib/cgraph/test_itos.c +++ b/lib/cgraph/test_itos.c @@ -11,17 +11,11 @@ #include #include -static void test_0(void) { - assert(strcmp(itos(0).str, "0") == 0); -} +static void test_0(void) { assert(strcmp(itos(0).str, "0") == 0); } -static void test_1(void) { - assert(strcmp(itos(1).str, "1") == 0); -} +static void test_1(void) { assert(strcmp(itos(1).str, "1") == 0); } -static void test_neg_1(void) { - assert(strcmp(itos(-1).str, "-1") == 0); -} +static void test_neg_1(void) { assert(strcmp(itos(-1).str, "-1") == 0); } static void test_min(void) {