diff options
author | EuAndreh <eu@euandre.org> | 2021-06-27 16:37:45 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-06-27 16:37:45 -0300 |
commit | bc92c8e0a6bd50b9c77344833bc75b2ef36582f6 (patch) | |
tree | b2e5ec25c8006fb7485534ebf5d3b11285d75943 /src/unit-test.h | |
parent | TODOs.md: Add #task-20f96d7d-2fd8-7a5f-e861-ded565c3b408 (diff) | |
download | remembering-bc92c8e0a6bd50b9c77344833bc75b2ef36582f6.tar.gz remembering-bc92c8e0a6bd50b9c77344833bc75b2ef36582f6.tar.xz |
src/unit-test.h: Make its output equal to aux/tests-lib.sh
Diffstat (limited to 'src/unit-test.h')
-rw-r--r-- | src/unit-test.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unit-test.h b/src/unit-test.h index 1dcd53c..02922f7 100644 --- a/src/unit-test.h +++ b/src/unit-test.h @@ -9,7 +9,7 @@ #define COLOUR_YELLOW "\033[0;33m" void testing(const char *const message) { - fprintf(stderr, "testing: " COLOUR_YELLOW "%s" COLOUR_RESET "...", message); + fprintf(stderr, COLOUR_YELLOW "testing" COLOUR_RESET ": %s...", message); } void test_ok() { |