Skip to content

Commit 17fe8d1

Browse files
authored
Fix test for Jedi 0.19.2 (#609)
1 parent eb61ccd commit 17fe8d1

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

test/plugins/test_completion.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -179,9 +179,7 @@ def test_jedi_completion_with_fuzzy_enabled(config, workspace) -> None:
179179

180180
assert items
181181

182-
expected = "commonprefix(m)"
183-
if JEDI_VERSION == "0.18.0":
184-
expected = "commonprefix(list)"
182+
expected = "isabs(s)"
185183
assert items[0]["label"] == expected
186184

187185
# Test we don't throw with big character

0 commit comments

Comments
 (0)