From c2dc5124c94928647a9b419b7bbc93ed9f334a8f Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Wed, 8 Sep 2021 10:49:32 +0900 Subject: [PATCH] Rename a UnitTest for ThreadPool --- src/test/ThreadPoolTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/ThreadPoolTest.cpp b/src/test/ThreadPoolTest.cpp index 8a9badc..5a1a51d 100644 --- a/src/test/ThreadPoolTest.cpp +++ b/src/test/ThreadPoolTest.cpp @@ -5,7 +5,7 @@ using OneThreadPool = EC::ThreadPool<1>; using ThreeThreadPool = EC::ThreadPool<3>; -TEST(ECThreadPool, CannotCompile) { +TEST(ECThreadPool, OneThread) { OneThreadPool p; std::atomic_int data; data.store(0);