From ef37ca5e96abad293c8bfa27f54526075fd8e2ce Mon Sep 17 00:00:00 2001 From: Junghyeon Park Date: Sat, 31 Aug 2024 13:54:04 +0900 Subject: [PATCH] Fix inconsistent test names --- test/unit_tests/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit_tests/CMakeLists.txt b/test/unit_tests/CMakeLists.txt index 3076e045..f8ec87fc 100644 --- a/test/unit_tests/CMakeLists.txt +++ b/test/unit_tests/CMakeLists.txt @@ -61,12 +61,12 @@ quill_add_test(TEST_StringFromTime StringFromTimeTest.cpp) quill_add_test(TEST_ThreadContextManager ThreadContextManagerTest.cpp) quill_add_test(TEST_TimestampFormatter TimestampFormatterTest.cpp) quill_add_test(TEST_TransitEventBuffer TransitEventBufferTest.cpp) -quill_add_test(TEST_UnboundedQueue.cpp UnboundedQueueTest.cpp) +quill_add_test(TEST_UnboundedQueue UnboundedQueueTest.cpp) quill_add_test(TEST_Utility UtilityTest.cpp) if (NOT QUILL_SANITIZE_THREAD) # clang++12 thread sanitizer throws exception for unknown reason in the CI - quill_add_test(TEST_UnboundedQueueLimit.cpp UnboundedQueueLimitTest.cpp) + quill_add_test(TEST_UnboundedQueueLimit UnboundedQueueLimitTest.cpp) endif () if (NOT QUILL_USE_VALGRIND)