Skip to content

Commit

Permalink
missed a spot
Browse files Browse the repository at this point in the history
  • Loading branch information
jbaldwin committed Aug 2, 2024
1 parent 20b66be commit 18f0efe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions test/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ struct test_setup_networking

~test_setup_networking()
{
// // Cleanup the temporary key.pem and cert.pem files.
// auto unused = system("rm key.pem cert.pem");
// (void)unused;
// Cleanup the temporary key.pem and cert.pem files.
auto unused = system("rm key.pem cert.pem");
(void)unused;
}
};

Expand Down
2 changes: 1 addition & 1 deletion test/test_sync_wait.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,4 @@ TEST_CASE("sync_wait very rarely hangs issue-270", "[sync_wait]")
coro::sync_wait(coro::when_all(std::move(tasks)));

REQUIRE(count > 0);
}
}

0 comments on commit 18f0efe

Please sign in to comment.