File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -179,14 +179,14 @@ def test_toml_parse_errors(self):
179
179
# ("timid = 1\n", r"timid = 1"),
180
180
("[tool.coverage.run\n " , r"Key group" ),
181
181
('[tool.coverage.report]\n exclude_lines = ["foo("]\n ' ,
182
- r"Invalid \[report\].exclude_lines value 'foo\(': "
182
+ r"Invalid \[report\].exclude_lines value u? 'foo\(': "
183
183
r"(unbalanced parenthesis|missing \))" ),
184
184
('[tool.coverage.report]\n partial_branches = ["foo["]\n ' ,
185
- r"Invalid \[report\].partial_branches value 'foo\[': "
185
+ r"Invalid \[report\].partial_branches value u? 'foo\[': "
186
186
r"(unexpected end of regular expression|unterminated character set)" ),
187
187
('[tool.coverage.report]\n partial_branches_always = ["foo***"]\n ' ,
188
188
r"Invalid \[report\].partial_branches_always value "
189
- r"'foo\*\*\*': "
189
+ r"u? 'foo\*\*\*': "
190
190
r"multiple repeat" ),
191
191
('[tool.coverage.run]\n concurrency="foo"' , "not a list" ),
192
192
("[tool.coverage.report]\n precision=1.23" , "not an integer" ),
You can’t perform that action at this time.
0 commit comments