aboutsummaryrefslogtreecommitdiff
path: root/tests/src/confTest/confTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/confTest/confTest.cpp')
-rw-r--r--tests/src/confTest/confTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/src/confTest/confTest.cpp b/tests/src/confTest/confTest.cpp
index 100c7cf..b5d5ae1 100644
--- a/tests/src/confTest/confTest.cpp
+++ b/tests/src/confTest/confTest.cpp
@@ -61,7 +61,7 @@ TEST_CASE("parse config - invalid object")
SibsConfig sibsConfig(Compiler::GCC, TINYDIR_STRING("tests/src/confTest"), OPT_LEV_DEBUG, false);
Result<bool> result = Config::readFromFile(TINYDIR_STRING("tests/src/confTest/invalidObject.conf"), sibsConfig);
REQUIRE(result.isErr());
- REQUIRE(result.getErrMsg() == "Invalid config object \"invalidObj\"");
+ REQUIRE(result.getErrMsg().find("Invalid config object \"invalidObj\"") != std::string::npos);
}
TEST_CASE("parse config - invalid field")
@@ -69,7 +69,7 @@ TEST_CASE("parse config - invalid field")
SibsConfig sibsConfig(Compiler::GCC, TINYDIR_STRING("tests/src/confTest"), OPT_LEV_DEBUG, false);
Result<bool> result = Config::readFromFile(TINYDIR_STRING("tests/src/confTest/invalidField.conf"), sibsConfig);
REQUIRE(result.isErr());
- REQUIRE(result.getErrMsg() == "Invalid field \"invalidField\" under object \"package\"");
+ REQUIRE(result.getErrMsg().find("Invalid field \"invalidField\" under object \"package\"") != std::string::npos);
}
TEST_CASE("parse config - use different config for different platforms")