Skip to content

Commit 7c0625f

Browse files
committed
fix: tests
1 parent 11fd5e8 commit 7c0625f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test_easymotion.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ def test_generate_hints_no_duplicates():
5959
double_chars = [h for h in hints if len(h) == 2]
6060
if double_chars:
6161
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"
62+
assert double_char[0] not in single_chars, \
63+
f"Double char hint {double_char} starts with single char hint"
6464

6565
# Check all characters are from the key set
6666
assert all(c in keys for h in hints for c in h), \

0 commit comments

Comments
 (0)