[search] Fix query_test.cpp to take into account case folding.

This commit is contained in:
Yury Melnichek 2011-05-31 20:41:21 +02:00 committed by Alex Zolotarev
parent b41b7d5242
commit 42a0ee0812

View file

@ -24,5 +24,5 @@ UNIT_TEST(QueryParseKeywords_Empty)
TEST_EQUAL(vector<UniString>(), Query("", m2::RectD(), NULL).m_keywords, ());
TEST_EQUAL(MakeUniString(""), Query("", m2::RectD(), NULL).m_prefix, ());
TEST_EQUAL(vector<UniString>(), Query("Z", m2::RectD(), NULL).m_keywords, ());
TEST_EQUAL(MakeUniString("Z"), Query("Z", m2::RectD(), NULL).m_prefix, ());
TEST_EQUAL(MakeUniString("z"), Query("Z", m2::RectD(), NULL).m_prefix, ());
}