summaryrefslogtreecommitdiff
path: root/tests/test_plugins.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_plugins.py')
-rw-r--r--tests/test_plugins.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_plugins.py b/tests/test_plugins.py
index b1614832..d3365a6d 100644
--- a/tests/test_plugins.py
+++ b/tests/test_plugins.py
@@ -426,7 +426,7 @@ class GoodFileTracerTest(FileTracerTest):
'--------------------------------------------------------',
'TOTAL 11 7 0 0 36%',
]
- self.assertEqual(report, expected)
+ self.assertEqual(expected, report)
self.assertAlmostEqual(total, 36.36, places=2)
def test_plugin2_with_html_report(self):
@@ -512,7 +512,7 @@ class GoodFileTracerTest(FileTracerTest):
'-----------------------------------------------',
'unsuspecting.py 6 3 50% 2, 4, 6',
]
- self.assertEqual(report, expected)
+ self.assertEqual(expected, report)
self.assertEqual(total, 50)
def test_find_unexecuted(self):