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_oddball.py | |
| parent | b5ddfd9ad9978211006588934bc25e93d2ba8023 (diff) | |
| download | python-coveragepy-git-b97aaf2bc2703ac55a3fc1e048729bea8434c18c.tar.gz | |
style: prefer explicit string concatenation
Diffstat (limited to 'tests/test_oddball.py')
| -rw-r--r-- | tests/test_oddball.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_oddball.py b/tests/test_oddball.py index a97fc190..c3082abb 100644 --- a/tests/test_oddball.py +++ b/tests/test_oddball.py @@ -484,9 +484,9 @@ class GettraceTest(CoverageTest): out = self.stdout().replace(self.last_module_name, "coverage_test") expected = ( - "call: coverage_test.py @ 12\n" - "line: coverage_test.py @ 13\n" - "line: coverage_test.py @ 14\n" + "call: coverage_test.py @ 12\n" + + "line: coverage_test.py @ 13\n" + + "line: coverage_test.py @ 14\n" + "return: coverage_test.py @ 14\n" ) assert expected == out |
