From 9fb7fb66da2f8eef536f41ae2c122af89921e5ec Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Sun, 7 May 2017 16:39:32 +0200 Subject: [PATCH] Move another test to delete a file. --- test/test_evaluate/test_imports.py | 8 ++++++++ test/test_windows.py | 8 -------- 2 files changed, 8 insertions(+), 8 deletions(-) delete mode 100644 test/test_windows.py 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()