aboutsummaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorMarcel Braun <marcel.braun@ost.ch>2026-05-05 23:25:47 +0200
committerMarcel Braun <marcel.braun@ost.ch>2026-05-05 23:25:47 +0200
commitea450f4ed742a37b40a4e1dcaf8d17328d635472 (patch)
treecd9511ff9145dd993f257c2fcca4d8d06e857625 /libs
parent3082340fa8ab3c7c0da5d2f9d321d2367d399b20 (diff)
parent4522374b902ee9a30c83c2ec23880522e80febea (diff)
downloadkernel-ea450f4ed742a37b40a4e1dcaf8d17328d635472.tar.xz
kernel-ea450f4ed742a37b40a4e1dcaf8d17328d635472.zip
Merge branch 'symbolic-links' into 'develop-BA-FS26'
Symbolic links See merge request teachos/kernel!29
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);
}
}
}