diff --git a/CMakeLists.txt b/CMakeLists.txt index d7e0e257a69d5ecb9523b227111b809691160aa2..41dacd265ba707820182b79a4b6b632afb4b0b08 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -40,7 +40,7 @@ IF (EXISTS "${PROJECT_SOURCE_DIR}/lib/Catch2/CMakeLists.txt") add_executable(tests $<TARGET_OBJECTS:common> ${test_main_SRC} - ${test_SRC} test/Services/EventReportService.cpp) + ${test_SRC}) target_link_libraries(tests Catch2::Catch2) ENDIF() diff --git a/test/Services/EventReportService.cpp b/test/Services/EventReportService.cpp index 3d944e89bc2c616b14b0d4101c1e30f93a1f0c38..32f4f30b18ee8d9e38c9c5a059fcfd07ad27c9f1 100644 --- a/test/Services/EventReportService.cpp +++ b/test/Services/EventReportService.cpp @@ -27,7 +27,7 @@ TEST_CASE("Informative Event Report TM[5,1]", "[service][st05]") { CHECK(strcmp(checkString, reinterpret_cast<const char *>(eventReportData)) == 0); } -TEST_CASE("Loww Severity Anomaly Report TM[5,2]", "[service][st05]") { +TEST_CASE("Low Severity Anomaly Report TM[5,2]", "[service][st05]") { EventReportService eventReportService; const unsigned char eventReportData[] = "HelloWorld"; char checkString[255];