summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Crosley <timothy.crosley@gmail.com>2019-04-30 23:53:36 -0700
committerTimothy Crosley <timothy.crosley@gmail.com>2019-04-30 23:53:36 -0700
commit8f7164547a857a1024277276b98731ec1ac09493 (patch)
tree581b2960eccf2da1c796ac0874a1af17713b998c
parente63757d14e5aa0ccfb1248f8bc44fd2042fae403 (diff)
downloadisort-feature/implement-938.tar.gz
-rw-r--r--test_isort.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/test_isort.py b/test_isort.py
index 37152eeb..8768a26f 100644
--- a/test_isort.py
+++ b/test_isort.py
@@ -2944,7 +2944,7 @@ def test_skip_paths_issue_938(tmpdir):
results = check_output(['isort', 'dont_skip.py', 'migrations/file_glob_skip.py'])
os.chdir(str(test_run_directory))
- assert not b'skipped' in results.lower()
+ assert b'skipped' not in results.lower()
os.chdir(str(base_dir))
results = check_output(['isort', '--filter-files', '--settings-path=conf/.isort.cfg', 'dont_skip.py', 'migrations/file_glob_skip.py'])
@@ -2953,8 +2953,6 @@ def test_skip_paths_issue_938(tmpdir):
assert b'skipped 1' in results.lower()
-
-
def test_standard_library_deprecates_user_issue_778():
test_input = ('import os\n'
'\n'