From fc28b4fae92e98c3fad86c08512a902837893393 Mon Sep 17 00:00:00 2001 From: Isaac Da Pena <56054255+idapena@users.noreply.github.com> Date: Thu, 15 Feb 2024 23:44:42 -0400 Subject: [PATCH] Update CMakeLists.txt --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5bea40c..0df5eba 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -49,12 +49,12 @@ target_link_libraries(tests PRIVATE Catch2::Catch2WithMain) # Add individual tests using add_test() add_test( - NAME Graph Node Test + NAME GraphNodeTest COMMAND tests --testcase "Graph nodes are created correctly" ) add_test( - NAME Graph Edge Test + NAME GraphEdgeTest COMMAND tests --testcase "Graph edges are created correctly" )