Skip to content

Commit

Permalink
Fix windows test
Browse files Browse the repository at this point in the history
  • Loading branch information
gabime committed Nov 30, 2024
1 parent 9fa2232 commit ce3d047
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_misc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ TEST_CASE("os::fwrite_bytes", "[os]") {
const char* filename = "log_tests/test_fwrite_bytes.txt";
const char *msg = "hello";
prepare_logdir();
REQUIRE(create_dir("log_tests"));
REQUIRE(create_dir("log_tests") == true);
{
auto_closer closer(std::fopen(filename, "wb"));
REQUIRE(closer.fp != nullptr);
Expand Down

0 comments on commit ce3d047

Please sign in to comment.