diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2023-09-12 07:52:37 +0200 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2023-09-12 07:52:37 +0200 |
commit | 3466546567bb2a4014c221523bbb04c1860916f5 (patch) | |
tree | 58389e777dc694cec0eb2ccbd2cc1b4af03d0e0a | |
parent | 0471063bf84827bac5f0aad341e2fb587c062b70 (diff) | |
download | kit-3466546567bb2a4014c221523bbb04c1860916f5.zip |
kit_test: fix typo
-rw-r--r-- | source/kit/kit_test.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/kit/kit_test.h b/source/kit/kit_test.h index 20155af..f51516f 100644 --- a/source/kit/kit_test.h +++ b/source/kit/kit_test.h @@ -612,7 +612,7 @@ int kit_run_tests(int argc, char **argv) { printf("%s", kit_tests_list.v[i].test_file + file_root); no_color || kit_print_color_(kit_light_); - printf("\"!.\n"); + printf("\"!\n"); } else { no_color || kit_print_color_(kit_light_); printf("Unknown signal (%d) for \"", signum); @@ -624,7 +624,7 @@ int kit_run_tests(int argc, char **argv) { printf("%s", kit_tests_list.v[i].test_file + file_root); no_color || kit_print_color_(kit_light_); - printf("\"!.\n"); + printf("\"!\n"); } have_kit_report_s = 1; } @@ -640,7 +640,7 @@ int kit_run_tests(int argc, char **argv) { printf("%s", kit_tests_list.v[i].test_file + file_root); no_color || kit_print_color_(kit_light_); - printf("\"!.\n"); + printf("\"!\n"); have_kit_report_s = 1; } } |