summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-05-11 20:28:56 +0200
committerCarl Hetherington <cth@carlh.net>2022-05-11 20:38:01 +0200
commit1a721b82d4094c00ee89574e17c58c23c0de8cdd (patch)
treeae194de02a16b8f1328c523fc5e3866449b0e49e /test
parentbbe336ee97c86c424f8f94e0f947f8e3b20e7123 (diff)
Tidy up careful_string_filter and add some extra transliterations.
ł seems to be ignored by the ICU transliterator for some reason.
Diffstat (limited to 'test')
-rw-r--r--test/util_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/util_test.cc b/test/util_test.cc
index b0abe04c9..a45c144b1 100644
--- a/test/util_test.cc
+++ b/test/util_test.cc
@@ -123,7 +123,7 @@ BOOST_AUTO_TEST_CASE (careful_string_filter_test)
BOOST_CHECK_EQUAL ("hello_world", careful_string_filter("héllo_wörld"));
BOOST_CHECK_EQUAL ("hello_world", careful_string_filter("héllo_wörld"));
BOOST_CHECK_EQUAL ("hello_world_a", careful_string_filter("héllo_wörld_à"));
- BOOST_CHECK_EQUAL ("hello_world_CcGgIOoSsUu", careful_string_filter("hello_world_ÇçĞğİÖöŞşÜü"));
+ BOOST_CHECK_EQUAL ("hello_world_CcGgIOoSsUuLl", careful_string_filter("hello_world_ÇçĞğİÖöŞşÜüŁł"));
}