From c6a5c3117c736fb89ac85e5ca6d6375c71cd4f20 Mon Sep 17 00:00:00 2001 From: Mitya Selivanov Date: Fri, 15 Sep 2023 22:17:51 +0200 Subject: win32: fix --- source/tests/file.test.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'source/tests') 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")); } -- cgit v1.2.3