diff options
Diffstat (limited to 'Source/UnitTests/Common/StringUtilTest.cpp')
| -rw-r--r-- | Source/UnitTests/Common/StringUtilTest.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/UnitTests/Common/StringUtilTest.cpp b/Source/UnitTests/Common/StringUtilTest.cpp index 1f1159d1eb..357f7f9500 100644 --- a/Source/UnitTests/Common/StringUtilTest.cpp +++ b/Source/UnitTests/Common/StringUtilTest.cpp @@ -86,7 +86,7 @@ TEST(StringUtil, GetEscapedHtml) static constexpr auto no_escape_needed = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" "!@#$%^*()-_=+,./?;:[]{}| \\\t\n"; - EXPECT_EQ(GetEscapedHtml(no_escape_needed), no_escape_needed); - EXPECT_EQ(GetEscapedHtml("&<>'\""), "&<>'""); - EXPECT_EQ(GetEscapedHtml("&&&"), "&&&"); + EXPECT_EQ(Common::GetEscapedHtml(no_escape_needed), no_escape_needed); + EXPECT_EQ(Common::GetEscapedHtml("&<>'\""), "&<>'""); + EXPECT_EQ(Common::GetEscapedHtml("&&&"), "&&&"); } |
