From 0e06e9b22188e7f23feacd0ddef1cdc286a3f732 Mon Sep 17 00:00:00 2001 From: "florent.teppe" Date: Sun, 19 Sep 2021 20:29:32 +0200 Subject: [PATCH] Removed useless comment and converted the file to UTF8 to keep special characters --- .../mwdialogue/test_keywordsearch.cpp | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/apps/openmw_test_suite/mwdialogue/test_keywordsearch.cpp b/apps/openmw_test_suite/mwdialogue/test_keywordsearch.cpp index 25ea566165..d633feecd9 100644 --- a/apps/openmw_test_suite/mwdialogue/test_keywordsearch.cpp +++ b/apps/openmw_test_suite/mwdialogue/test_keywordsearch.cpp @@ -71,20 +71,18 @@ TEST_F(KeywordSearchTest, keyword_test_utf8_word_begin) { // We make sure that the search works well even if the character is not ASCII MWDialogue::KeywordSearch search; - search.seed("états", 0); - search.seed("ïrradiés", 0); - search.seed("ça nous déçois", 0); + search.seed("états", 0); + search.seed("ïrradiés", 0); + search.seed("ça nous déçois", 0); - std::string text = "les nations unis ont réunis le monde entier, états units inclus pour parler du problème des gens ïrradiés et ça nous déçois"; + std::string text = "les nations unis ont réunis le monde entier, états units inclus pour parler du problème des gens ïrradiés et ça nous déçois"; std::vector::Match> matches; search.highlightKeywords(text.begin(), text.end(), matches); ASSERT_TRUE (matches.size() == 3); - ASSERT_TRUE(std::string( matches[0].mBeg, matches[0].mEnd) == "états"); - ASSERT_TRUE(std::string( matches[1].mBeg, matches[1].mEnd) == "ïrradiés"); - ASSERT_TRUE(std::string( matches[2].mBeg, matches[2].mEnd) == "ça nous déçois"); - - //ASSERT_TRUE (std::string(matches.front().mBeg, matches.front().mEnd) == "bar lock"); + ASSERT_TRUE(std::string( matches[0].mBeg, matches[0].mEnd) == "états"); + ASSERT_TRUE(std::string( matches[1].mBeg, matches[1].mEnd) == "ïrradiés"); + ASSERT_TRUE(std::string( matches[2].mBeg, matches[2].mEnd) == "ça nous déçois"); }