diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2023-09-15 22:17:51 +0200 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2023-09-15 22:17:51 +0200 |
commit | c6a5c3117c736fb89ac85e5ca6d6375c71cd4f20 (patch) | |
tree | 208fbbcd3d2d415c655d51eb99d562f761785ca6 /source/tests | |
parent | cdc5ceea3634fd6bdd55156ef0523d927624eb4c (diff) | |
download | kit-c6a5c3117c736fb89ac85e5ca6d6375c71cd4f20.zip |
win32: fix
Diffstat (limited to 'source/tests')
-rw-r--r-- | source/tests/file.test.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/source/tests/file.test.c b/source/tests/file.test.c index 2a37c07..86a88e2 100644 --- a/source/tests/file.test.c +++ b/source/tests/file.test.c @@ -270,10 +270,8 @@ TEST("file map write") { REQUIRE_EQ(n, 3); fclose(f); - if (n == 3) { - printf("READ: %d %d %d \n", buf[0], buf[1], buf[2]); + if (n == 3) REQUIRE_EQ(memcmp(buf, "bar", 3), 0); - } file_remove(SZ("foo")); } |