Skip to content

Commit

Permalink
fix jedi test
Browse files Browse the repository at this point in the history
  • Loading branch information
Carreau committed Jun 26, 2024
1 parent 982c92a commit 6296e02
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion IPython/core/tests/test_completer.py
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,9 @@ def test_completions_have_type(self):
assert c.type == "magic", "Type of magic was not assigned by completer"

@pytest.mark.xfail(
parse(version("jedi")) > parse("0.18.0"), reason="Known failure on jedi<=0.18.0"
parse(version("jedi")) <= parse("0.18.0"),
reason="Known failure on jedi<=0.18.0",
strict=True,
)
def test_deduplicate_completions(self):
"""
Expand Down

0 comments on commit 6296e02

Please sign in to comment.