summaryrefslogtreecommitdiff
path: root/tests/test_summary.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_summary.py')
-rw-r--r--tests/test_summary.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/test_summary.py b/tests/test_summary.py
index 1d74af9c..e3694000 100644
--- a/tests/test_summary.py
+++ b/tests/test_summary.py
@@ -562,8 +562,7 @@ class SummaryTest(UsingModulesMixin, CoverageTest):
errmsg = re.sub(r"parse '.*mycode.py", "parse 'mycode.py", errmsg)
# The actual error message varies version to version
errmsg = re.sub(r": '.*' at", ": 'error' at", errmsg)
- assert "Couldn't parse 'mycode.py' as Python source: 'error' at line 1" == \
- errmsg
+ assert errmsg == "Couldn't parse 'mycode.py' as Python source: 'error' at line 1"
def test_accenteddotpy_not_python(self):
if env.JYTHON:
@@ -923,8 +922,8 @@ class TestSummaryReporterConfiguration(CoverageTest):
"""Assert that the `words` appear in order in `text`."""
indexes = list(map(text.find, words))
assert -1 not in indexes
- assert indexes == sorted(indexes), \
- "The words %r don't appear in order in %r" % (words, text)
+ msg = "The words %r don't appear in order in %r" % (words, text)
+ assert indexes == sorted(indexes), msg
def test_sort_report_by_stmts(self):
# Sort the text report by the Stmts column.