summaryrefslogtreecommitdiff
path: root/tests/test_isort.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_isort.py')
-rw-r--r--tests/test_isort.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_isort.py b/tests/test_isort.py
index e9ca77cf..11a7079f 100644
--- a/tests/test_isort.py
+++ b/tests/test_isort.py
@@ -2587,7 +2587,7 @@ def test_strict_whitespace_by_default(capsys) -> None:
test_input = "import os\nfrom django.conf import settings\n"
SortImports(file_contents=test_input, check=True)
out, err = capsys.readouterr()
- assert out == "ERROR: Imports are incorrectly sorted.\n"
+ assert out == "ERROR: Imports are incorrectly sorted and/or formatted.\n"
def test_strict_whitespace_no_closing_newline_issue_676(capsys) -> None: