diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-10-10 08:01:25 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-10-10 08:01:25 -0400 |
commit | b97aaf2bc2703ac55a3fc1e048729bea8434c18c (patch) | |
tree | 64ef7e083576334fbf099a35460f54b9c3acf4a5 /tests/test_parser.py | |
parent | b5ddfd9ad9978211006588934bc25e93d2ba8023 (diff) | |
download | python-coveragepy-git-b97aaf2bc2703ac55a3fc1e048729bea8434c18c.tar.gz |
style: prefer explicit string concatenation
Diffstat (limited to 'tests/test_parser.py')
-rw-r--r-- | tests/test_parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_parser.py b/tests/test_parser.py index 1b4e8aca..82bf7616 100644 --- a/tests/test_parser.py +++ b/tests/test_parser.py @@ -120,7 +120,7 @@ class PythonParserTest(CoverageTest): def test_indentation_error(self): msg = ( - "Couldn't parse '<code>' as Python source: " + "Couldn't parse '<code>' as Python source: " + "'unindent does not match any outer indentation level' at line 3" ) with pytest.raises(NotPython, match=msg): |