mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-07 06:24:27 +08:00
Fixed bug for python 2
This commit is contained in:
@@ -321,7 +321,7 @@ def test_math_fuzzy_completion(Script):
|
||||
'log2'] == [comp.name for comp in script.completions(fuzzy=True)]
|
||||
|
||||
|
||||
@pytest.mark.skipif(sys.version_info >= (3, 3),
|
||||
@pytest.mark.skipif(sys.version_info > (2, 7),
|
||||
reason="requires python3.3 or higher")
|
||||
def test_math_fuzzy_completion(Script):
|
||||
script = Script('import math\nmath.og')
|
||||
|
||||
Reference in New Issue
Block a user