summaryrefslogtreecommitdiff
path: root/tests/test_config.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-10-10 08:01:25 -0400
committerNed Batchelder <ned@nedbatchelder.com>2021-10-10 08:01:25 -0400
commitb97aaf2bc2703ac55a3fc1e048729bea8434c18c (patch)
tree64ef7e083576334fbf099a35460f54b9c3acf4a5 /tests/test_config.py
parentb5ddfd9ad9978211006588934bc25e93d2ba8023 (diff)
downloadpython-coveragepy-git-b97aaf2bc2703ac55a3fc1e048729bea8434c18c.tar.gz
style: prefer explicit string concatenation
Diffstat (limited to 'tests/test_config.py')
-rw-r--r--tests/test_config.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/test_config.py b/tests/test_config.py
index 9e126827..aec18bf2 100644
--- a/tests/test_config.py
+++ b/tests/test_config.py
@@ -169,14 +169,14 @@ class ConfigTest(CoverageTest):
("timid = 1\n", r"no section headers"),
("[run\n", r"\[run"),
("[report]\nexclude_lines = foo(\n",
- r"Invalid \[report\].exclude_lines value 'foo\(': "
+ r"Invalid \[report\].exclude_lines value 'foo\(': " +
r"(unbalanced parenthesis|missing \))"),
("[report]\npartial_branches = foo[\n",
- r"Invalid \[report\].partial_branches value 'foo\[': "
+ r"Invalid \[report\].partial_branches value 'foo\[': " +
r"(unexpected end of regular expression|unterminated character set)"),
("[report]\npartial_branches_always = foo***\n",
- r"Invalid \[report\].partial_branches_always value "
- r"'foo\*\*\*': "
+ r"Invalid \[report\].partial_branches_always value " +
+ r"'foo\*\*\*': " +
r"multiple repeat"),
]
@@ -190,14 +190,14 @@ class ConfigTest(CoverageTest):
("[tool.coverage.run]\ntimid = \"maybe?\"\n", r"maybe[?]"),
("[tool.coverage.run\n", None),
('[tool.coverage.report]\nexclude_lines = ["foo("]\n',
- r"Invalid \[tool.coverage.report\].exclude_lines value u?'foo\(': "
+ r"Invalid \[tool.coverage.report\].exclude_lines value u?'foo\(': " +
r"(unbalanced parenthesis|missing \))"),
('[tool.coverage.report]\npartial_branches = ["foo["]\n',
- r"Invalid \[tool.coverage.report\].partial_branches value u?'foo\[': "
+ r"Invalid \[tool.coverage.report\].partial_branches value u?'foo\[': " +
r"(unexpected end of regular expression|unterminated character set)"),
('[tool.coverage.report]\npartial_branches_always = ["foo***"]\n',
- r"Invalid \[tool.coverage.report\].partial_branches_always value "
- r"u?'foo\*\*\*': "
+ r"Invalid \[tool.coverage.report\].partial_branches_always value " +
+ r"u?'foo\*\*\*': " +
r"multiple repeat"),
('[tool.coverage.run]\nconcurrency="foo"', "not a list"),
("[tool.coverage.report]\nprecision=1.23", "not an integer"),