From a62008a3e03e334371a572dd02fbb9f8fa957369 Mon Sep 17 00:00:00 2001 From: Kyler Date: Tue, 11 Nov 2025 20:12:14 -0700 Subject: [PATCH] Updated test reporting formatting --- SLS_C/tests/tests.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SLS_C/tests/tests.c b/SLS_C/tests/tests.c index c46f7fa..32fef20 100644 --- a/SLS_C/tests/tests.c +++ b/SLS_C/tests/tests.c @@ -78,12 +78,12 @@ int main(void) { .total = 0, }; - printf(" ===== SlsStr Tests =====\n"); + printf(" ========== SlsStr Tests ==========\n"); test_report(run_string_tests(), &counts); - printf(" ===== Lexer Tests =====\n"); + printf(" ========== Lexer Tests ==========\n"); test_report(run_lexer_tests(), &counts); - printf(" ===== Tests Overview =====\n"); + printf(" ========== Tests Overview ==========\n"); if (counts.errored > 0) // Bright Red printf("\x1b[91m%d of %d tests encountered an error.\n\x1b[0m", counts.errored, counts.total);