aports/community/py3-enchant/remove-first.patch
2023-04-19 15:34:40 +02:00

15 lines
507 B
Diff

this can have a stale nonsense and fail the assert
--
diff --git a/tests/test_dict.py b/tests/test_dict.py
index 24ac44f..410072d 100644
--- a/tests/test_dict.py
+++ b/tests/test_dict.py
@@ -92,6 +92,7 @@ def test_session(en_us_dict):
def test_add_remove(en_us_dict):
"""Test adding/removing from default user dictionary."""
nonsense = "kxhjsddsi"
+ en_us_dict.remove(nonsense)
assert not en_us_dict.check(nonsense)
en_us_dict.add(nonsense)
assert en_us_dict.is_added(nonsense)