diff --git a/test/test_expand.c b/test/test_expand.c index 632e79ab..d3ab7d2e 100644 --- a/test/test_expand.c +++ b/test/test_expand.c @@ -68,6 +68,8 @@ static greatest_test_res test_expansion_contains_with_languages(char *input, cha TEST test_expansions(void) { CHECK_CALL(test_expansion_contains_with_languages("123 Main St. #2f", "123 main street number 2f", LIBPOSTAL_DEFAULT_OPTIONS, 1, "en")); CHECK_CALL(test_expansion_contains_with_languages("Marktstrasse", "markt strasse", LIBPOSTAL_DEFAULT_OPTIONS, 1, "de")); + CHECK_CALL(test_expansion_contains_with_languages("Hoofdstraat", "hoofdstraat", LIBPOSTAL_DEFAULT_OPTIONS, 1, "nl")); + CHECK_CALL(test_expansion_contains_with_languages("มงแตร", "มงแตร", LIBPOSTAL_DEFAULT_OPTIONS, 1, "th")); PASS(); }