##// END OF EJS Templates
fix jedi test
M Bussonnier -
Show More
@@ -538,7 +538,9 b' class TestCompleter(unittest.TestCase):'
538 assert c.type == "magic", "Type of magic was not assigned by completer"
538 assert c.type == "magic", "Type of magic was not assigned by completer"
539
539
540 @pytest.mark.xfail(
540 @pytest.mark.xfail(
541 parse(version("jedi")) > parse("0.18.0"), reason="Known failure on jedi<=0.18.0"
541 parse(version("jedi")) <= parse("0.18.0"),
542 reason="Known failure on jedi<=0.18.0",
543 strict=True,
542 )
544 )
543 def test_deduplicate_completions(self):
545 def test_deduplicate_completions(self):
544 """
546 """
General Comments 0
You need to be logged in to leave comments. Login now