aboutsummaryrefslogtreecommitdiff
path: root/src/backends/backendsCommon/test/DynamicBackendTests.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/backends/backendsCommon/test/DynamicBackendTests.hpp')
-rw-r--r--src/backends/backendsCommon/test/DynamicBackendTests.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backends/backendsCommon/test/DynamicBackendTests.hpp b/src/backends/backendsCommon/test/DynamicBackendTests.hpp
index f49c36e5b1..046ee3a488 100644
--- a/src/backends/backendsCommon/test/DynamicBackendTests.hpp
+++ b/src/backends/backendsCommon/test/DynamicBackendTests.hpp
@@ -146,7 +146,7 @@ std::string GetBasePath(const std::string& basePath)
// This is the base path from the build where the test libraries were built.
path sharedObjectPath = programLocation.append(basePath);
REQUIRE_MESSAGE(exists(sharedObjectPath),
- "Base path for shared objects does not exist: " + sharedObjectPath.string());
+ ("Base path for shared objects does not exist: " + sharedObjectPath.string()));
return sharedObjectPath.string();
}
@@ -385,7 +385,7 @@ void CreateValidDynamicBackendObjectTestImpl()
// We expect this path to exists so we can load a valid dynamic backend.
CHECK_MESSAGE(fs::exists(testSubDirectory),
- "Base path for shared objects does not exist: " + testSubDirectory);
+ ("Base path for shared objects does not exist: " + testSubDirectory));
std::string sharedObjectFilePath = GetTestFilePath(testSubDirectory, g_TestValidTestDynamicBackendFileName);