From e531d5de0f8c577a04084d78dc7a83812c93a4a0 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Wed, 23 Feb 2022 21:29:50 -0800 Subject: [PATCH] cgraph: [nfc] reflow test_itos.c --- lib/cgraph/test_itos.c | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) 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) { -- 2.40.0