summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Crosley <timothy.crosley@gmail.com>2019-03-23 22:09:05 -0700
committerTimothy Crosley <timothy.crosley@gmail.com>2019-03-23 22:09:05 -0700
commitcf2e435a420133d0ac87ba342c268647bf0c6bb1 (patch)
treec9b01ae616fdc5f1fe538e5b587087ba4859a28e
parentbbcc06a1d54b41f154809c1d173ba5104b07ee92 (diff)
downloadisort-cf2e435a420133d0ac87ba342c268647bf0c6bb1.tar.gz
Fix config error
-rw-r--r--test_isort.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test_isort.py b/test_isort.py
index df46a75a..1e75c17e 100644
--- a/test_isort.py
+++ b/test_isort.py
@@ -2913,7 +2913,7 @@ def test_settings_path_skip_issue_909(tmpdir):
test_run_directory = os.getcwd()
os.chdir(str(base_dir))
- with pytest.raises(Exception): # without the settings path provided: the command should not skip & identify errors
+ with pytest.raises(Exception): # without the settings path provided: the command should not skip & identify errors
check_output(['isort', '--check-only'])
results = check_output(['isort', '--check-only', '--settings-path=conf/.isort.cfg'])
os.chdir(str(test_run_directory))