diff options
author | 6543 <6543@obermui.de> | 2023-03-03 15:22:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-03 14:22:06 +0000 |
commit | 6b6e91e6106e84c391c9635fc830aa6081119c71 (patch) | |
tree | 78a7e30b6613805efc4c54662b14ec2f352e8bc1 /tests | |
parent | Combine AbstractStreamIdTracker and AbstractStreamIdGenerator. (#15192) (diff) | |
download | synapse-6b6e91e6106e84c391c9635fc830aa6081119c71.tar.xz |
Fix ICU tests on alpine / macOS. (#15177)
The word boundary behaviour is slightly different, consider it acceptable for the tests.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/storage/test_user_directory.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/storage/test_user_directory.py b/tests/storage/test_user_directory.py index 43b724c4dd..8c72aa1722 100644 --- a/tests/storage/test_user_directory.py +++ b/tests/storage/test_user_directory.py @@ -696,6 +696,8 @@ class UserDirectoryICUTestCase(HomeserverTestCase): ["lazy'fox", "jumped", "over", "the", "dog"], # ICU 70 on Ubuntu 22.04 ["lazy'fox", "jumped:over", "the.dog"], + # pyicu 2.10.2 on Alpine edge / macOS + ["lazy'fox", "jumped", "over", "the.dog"], ), ) |