aboutsummaryrefslogtreecommitdiff
path: root/zencore/string.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'zencore/string.cpp')
-rw-r--r--zencore/string.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/zencore/string.cpp b/zencore/string.cpp
index 35dfcfcf3..ad6ee78fc 100644
--- a/zencore/string.cpp
+++ b/zencore/string.cpp
@@ -954,13 +954,13 @@ TEST_CASE("string")
SUBCASE("StrCaseCompare")
{
CHECK(StrCaseCompare("foo", "FoO") == 0);
- CHECK(StrCaseCompare("Bar", "bAs") < 0);
- CHECK(StrCaseCompare("bAr", "Bas") < 0);
- CHECK(StrCaseCompare("BBr", "Bar") > 0);
- CHECK(StrCaseCompare("Bbr", "BAr") > 0);
+ CHECK(StrCaseCompare("Bar", "bAs") < 0);
+ CHECK(StrCaseCompare("bAr", "Bas") < 0);
+ CHECK(StrCaseCompare("BBr", "Bar") > 0);
+ CHECK(StrCaseCompare("Bbr", "BAr") > 0);
CHECK(StrCaseCompare("foo", "FoO", 3) == 0);
- CHECK(StrCaseCompare("Bar", "bAs", 3) < 0);
- CHECK(StrCaseCompare("BBr", "Bar", 2) > 0);
+ CHECK(StrCaseCompare("Bar", "bAs", 3) < 0);
+ CHECK(StrCaseCompare("BBr", "Bar", 2) > 0);
}
SUBCASE("ForEachStrTok")