diff options
author | EuAndreh <eu@euandre.org> | 2021-08-22 12:42:45 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-08-22 12:42:45 -0300 |
commit | 8dcbba1a1a04aba3ead915922341af8dc401577d (patch) | |
tree | 9e76be85eefeb153f600c1e9bd248a327e5fb33e | |
parent | src/lib.c: Add strsjoin() with tests (diff) | |
download | gistatic-8dcbba1a1a04aba3ead915922341af8dc401577d.tar.gz gistatic-8dcbba1a1a04aba3ead915922341af8dc401577d.tar.xz |
src/lib.c: Tweak test_start() name
Diffstat (limited to '')
-rw-r--r-- | src/lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -781,7 +781,7 @@ static size_t max(const size_t size1, const size_t size2) { #ifdef TEST static void test_max(void) { - test_start("max()"); + test_start("max"); { testing("equal values"); assert(max(1, 1) == 1); |