summaryrefslogtreecommitdiff
path: root/tests/test_check_parallel.py
diff options
context:
space:
mode:
authorFrank Harrison <frank@doublethefish.com>2020-08-06 10:34:10 +0100
committerBryce Guinta <bryce.guinta@protonmail.com>2020-10-19 12:26:17 -0700
commit8bd7cc81d18a96c3d7acdcc5d4cd0db8fa64f5f3 (patch)
treebe30f07bd9129e6531c7631f40daf41c737be6c8 /tests/test_check_parallel.py
parent52c081b29c71d2e4df3c5e28af373f52e734e510 (diff)
downloadpylint-git-8bd7cc81d18a96c3d7acdcc5d4cd0db8fa64f5f3.tar.gz
review fixes| Attempts to explain that the captured behaviour has changed
Diffstat (limited to 'tests/test_check_parallel.py')
-rw-r--r--tests/test_check_parallel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_check_parallel.py b/tests/test_check_parallel.py
index 2f862edb0..c30a88e0a 100644
--- a/tests/test_check_parallel.py
+++ b/tests/test_check_parallel.py
@@ -89,7 +89,7 @@ class TestCheckParallelFramework:
def test_worker_check_single_file_uninitialised(self):
pylint.lint.parallel._worker_linter = None
- with pytest.raises(AttributeError):
+ with pytest.raises(AttributeError, msg="Something has unexpectedly changed"):
worker_check_single_file(_gen_file_data())
def test_worker_check_single_file_no_checkers(self):