From 434b3c9729f98ff654e58cccf67d72a7b2e33833 Mon Sep 17 00:00:00 2001 From: 6543 <6543@obermui.de> Date: Tue, 28 Feb 2023 21:56:02 +0100 Subject: [PATCH] ICU on alpine behave different Signed-off-by: 6543 <6543@obermui.de> --- changelog.d/15177.bugfix | 1 + tests/storage/test_user_directory.py | 2 ++ 2 files changed, 3 insertions(+) create mode 100644 changelog.d/15177.bugfix diff --git a/changelog.d/15177.bugfix b/changelog.d/15177.bugfix new file mode 100644 index 000000000000..423c4219013e --- /dev/null +++ b/changelog.d/15177.bugfix @@ -0,0 +1 @@ +Fix test_icu_word_boundary_punctuation for alpine installed ICU version \ No newline at end of file diff --git a/tests/storage/test_user_directory.py b/tests/storage/test_user_directory.py index 43b724c4ddd7..fb9f87727c4d 100644 --- a/tests/storage/test_user_directory.py +++ b/tests/storage/test_user_directory.py @@ -696,6 +696,8 @@ def test_icu_word_boundary_punctuation(self) -> None: ["lazy'fox", "jumped", "over", "the", "dog"], # ICU 70 on Ubuntu 22.04 ["lazy'fox", "jumped:over", "the.dog"], + # ICU 2.10.2 on Alpine edge + ["lazy'fox", 'jumped', 'over', 'the.dog'], ), )