diff options
| author | Stefan Boberg <[email protected]> | 2021-10-20 16:11:13 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-10-20 16:11:13 +0200 |
| commit | e67c332cc289768885334dc46a9ff3dd99874abe (patch) | |
| tree | c2bb2132c1f6c8a896511373f8952963c3d98bc0 /zencore/string.cpp | |
| parent | Added ZEN_THIRD_PARTY_INCLUDES_START to prevent compilation issues (diff) | |
| parent | Format fix. (diff) | |
| download | zen-e67c332cc289768885334dc46a9ff3dd99874abe.tar.xz zen-e67c332cc289768885334dc46a9ff3dd99874abe.zip | |
Merge branch 'main' of https://github.com/EpicGames/zen into main
Diffstat (limited to 'zencore/string.cpp')
| -rw-r--r-- | zencore/string.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zencore/string.cpp b/zencore/string.cpp index 43381aa5d..b7670617f 100644 --- a/zencore/string.cpp +++ b/zencore/string.cpp @@ -936,9 +936,9 @@ TEST_CASE("string") CHECK(HashStringAsLowerDjb2("aBCd"sv) == HashStringDjb2(ToLower("aBCd"sv))); } - SUBCASE("tolower") + SUBCASE("tolower") { - CHECK_EQ(ToLower("te!st"sv), "te!st"sv); + CHECK_EQ(ToLower("te!st"sv), "te!st"sv); CHECK_EQ(ToLower("TE%St"sv), "te%st"sv); } |