diff --git a/test/test_evaluate/test_imports.py b/test/test_evaluate/test_imports.py index 5a9569b6d..32026a1e9 100644 --- a/test/test_evaluate/test_imports.py +++ b/test/test_evaluate/test_imports.py @@ -209,3 +209,11 @@ def check(source, result, column=None): check('from os\\\n', ['import']) check('from os \\\n', ['import']) + + +def test_path_issues(): + """ + See pull request #684 for details. + """ + source = '''from datetime import ''' + assert jedi.Script(source).completions() diff --git a/test/test_windows.py b/test/test_windows.py deleted file mode 100644 index e5d8cd0d4..000000000 --- a/test/test_windows.py +++ /dev/null @@ -1,8 +0,0 @@ -import jedi - -def test_path_issues(): - """ - See pull request #684 for details. - """ - source = '''from datetime import ''' - assert jedi.Script(source).completions()