From 18f0efe73f42111078e58c2f04d962270e491a7e Mon Sep 17 00:00:00 2001 From: jbaldwin Date: Fri, 2 Aug 2024 11:05:02 -0600 Subject: [PATCH] missed a spot --- test/main.cpp | 6 +++--- test/test_sync_wait.cpp | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/main.cpp b/test/main.cpp index 108867f..0c47f41 100644 --- a/test/main.cpp +++ b/test/main.cpp @@ -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; } }; diff --git a/test/test_sync_wait.cpp b/test/test_sync_wait.cpp index 970a498..2099d2c 100644 --- a/test/test_sync_wait.cpp +++ b/test/test_sync_wait.cpp @@ -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); -} \ No newline at end of file +}