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);