From 522937cef0dd4b91a10001de3f8e3c8b649b7204 Mon Sep 17 00:00:00 2001 From: Melefo <42809472+Melefo@users.noreply.github.com> Date: Mon, 20 Jan 2020 21:32:51 +0100 Subject: [PATCH] Fixing test file name --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f435878..32da58f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ add_compile_options(-W -Wall -Wextra -Wshadow) if (TEST) # make unit tests - add_executable(unit_tests sources/hello.cpp tests/test_test.cpp) + add_executable(unit_tests sources/hello.cpp tests/hello.cpp) # include criterion & coverage target_link_libraries(unit_tests criterion -lgcov)