We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11fd5e8 commit 7c0625fCopy full SHA for 7c0625f
test_easymotion.py
@@ -59,8 +59,8 @@ def test_generate_hints_no_duplicates():
59
double_chars = [h for h in hints if len(h) == 2]
60
if double_chars:
61
for double_char in double_chars:
62
- assert double_char[0] not in single_chars, f"Double char hint {
63
- double_char} starts with single char hint"
+ assert double_char[0] not in single_chars, \
+ f"Double char hint {double_char} starts with single char hint"
64
65
# Check all characters are from the key set
66
assert all(c in keys for h in hints for c in h), \
0 commit comments