From 79af9fbc9787145aa4acee98b074d42ba760e113 Mon Sep 17 00:00:00 2001 From: Godzil Date: Sat, 15 Feb 2020 23:20:37 +0000 Subject: [PATCH] Also rename the test file. --- tests/CMakeLists.txt | 2 +- tests/{tuples_test.cpp => tuple_test.cpp} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename tests/{tuples_test.cpp => tuple_test.cpp} (100%) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index c3e2373..4233fec 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -3,7 +3,7 @@ project(DoRayTested) set(THREADS_PREFER_PTHREAD_FLAG ON) find_package(Threads REQUIRED) -set(TESTS_SRC tuples_test.cpp colour_test.cpp canvas_test.cpp matrix_test.cpp transformation_test.cpp) +set(TESTS_SRC tuple_test.cpp colour_test.cpp canvas_test.cpp matrix_test.cpp transformation_test.cpp) add_executable(testMyRays) target_include_directories(testMyRays PUBLIC ${gtest_SOURCE_DIR}/include ${gtest_SOURCE_DIR}) diff --git a/tests/tuples_test.cpp b/tests/tuple_test.cpp similarity index 100% rename from tests/tuples_test.cpp rename to tests/tuple_test.cpp