From cc8312ba3bbafacf92810eb8b3a0593be38bd9cd Mon Sep 17 00:00:00 2001 From: Grigoris Pavlakis <grigpavl@ece.auth.gr> Date: Sat, 9 Mar 2019 15:45:01 +0200 Subject: [PATCH] Remove unnecessary #define CATCH_CONFIG_MAIN from parameter service test. Also fix a random typo @ MemoryManagementService's javadoc. --- src/Services/MemoryManagementService.cpp | 2 +- test/Services/ParameterService.cpp | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Services/MemoryManagementService.cpp b/src/Services/MemoryManagementService.cpp index f904291c..63156713 100644 --- a/src/Services/MemoryManagementService.cpp +++ b/src/Services/MemoryManagementService.cpp @@ -15,7 +15,7 @@ MemoryManagementService::RawDataMemoryManagement::RawDataMemoryManagement( // Function declarations for the raw data memory management subservice void MemoryManagementService::RawDataMemoryManagement::loadRawData(Message &request) { /** - * Bare in mind that there is currently no error checking for invalid parameters. + * * Bear in mind that there is currently no error checking for invalid parameters. * A future version will include error checking and the corresponding error report/notification, * as the manual implies. * diff --git a/test/Services/ParameterService.cpp b/test/Services/ParameterService.cpp index bc20e51b..db4ad297 100644 --- a/test/Services/ParameterService.cpp +++ b/test/Services/ParameterService.cpp @@ -3,7 +3,6 @@ #include "Message.hpp" #include "ServiceTests.hpp" -#define CATCH_CONFIG_MAIN TEST_CASE("Parameter Report Subservice") { ParameterService pserv; -- GitLab