1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-27 03:35:27 +00:00

Merge pull request #1288 from akortunov/travisfix

Fixed Travis CI build (removed tab from test_stringops.cpp)
This commit is contained in:
Bret Curtis 2017-05-08 10:57:00 +02:00 committed by GitHub
commit 2f866fadcf

View File

@ -40,6 +40,6 @@ TEST_F (PartialBinarySearchTest, ci_test)
EXPECT_TRUE (Misc::StringUtils::lowerCase("ASD") == "asd");
// test to make sure system locale is not used
std::string unicode1 = "\u04151 \u0418"; // CYRILLIC CAPITAL LETTER IE CYRILLIC CAPITAL LETTER I
std::string unicode1 = "\u04151 \u0418"; // CYRILLIC CAPITAL LETTER IE, CYRILLIC CAPITAL LETTER I
EXPECT_TRUE( Misc::StringUtils::lowerCase(unicode1) == unicode1 );
}