aboutsummaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
Diffstat (limited to 'libs')
-rw-r--r--libs/kstd/kstd/string.test.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/libs/kstd/kstd/string.test.cpp b/libs/kstd/kstd/string.test.cpp
index 53d7c9a..9755676 100644
--- a/libs/kstd/kstd/string.test.cpp
+++ b/libs/kstd/kstd/string.test.cpp
@@ -37,7 +37,7 @@ SCENARIO("String initialization and construction", "[string]")
THEN("the string is not empty and has the same size as the view")
{
- REQUIRE(!str.empty());
+ REQUIRE_FALSE(str.empty());
REQUIRE(str.size() == view.size());
}
@@ -58,7 +58,7 @@ SCENARIO("String initialization and construction", "[string]")
THEN("the string is not empty and has the same size as the C-style string")
{
- REQUIRE(!str.empty());
+ REQUIRE_FALSE(str.empty());
REQUIRE(str.size() == std::strlen(c_str));
}
@@ -79,7 +79,7 @@ SCENARIO("String initialization and construction", "[string]")
THEN("the string is not empty and has size 1")
{
- REQUIRE(!str.empty());
+ REQUIRE_FALSE(str.empty());
REQUIRE(str.size() == 1);
}
@@ -294,7 +294,7 @@ SCENARIO("String conversion and comparison", "[string]")
THEN("the strings are not unequal")
{
- REQUIRE(!(str1 != str2));
+ REQUIRE_FALSE(str1 != str2);
}
}
@@ -311,8 +311,8 @@ SCENARIO("String conversion and comparison", "[string]")
THEN("the string and the string view are not unequal")
{
- REQUIRE(!(str != view));
- REQUIRE(!(view != str));
+ REQUIRE_FALSE(str != view);
+ REQUIRE_FALSE(view != str);
}
}
}