diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-12-24 16:20:24 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-12-24 16:20:24 -0500 |
commit | 8672eee93fc8e4cf017a133607a371547b5e7812 (patch) | |
tree | 216c8982b66afd4bea500d6ca7ab56b8a208624c /tests/test_oddball.py | |
parent | c4875b6ce2265e6797705508bae09a7a74a710e4 (diff) | |
download | python-coveragepy-git-8672eee93fc8e4cf017a133607a371547b5e7812.tar.gz |
Asserts should be expected,actual
Diffstat (limited to 'tests/test_oddball.py')
-rw-r--r-- | tests/test_oddball.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_oddball.py b/tests/test_oddball.py index 5d615c35..1087ea57 100644 --- a/tests/test_oddball.py +++ b/tests/test_oddball.py @@ -125,7 +125,7 @@ class RecursionTest(CoverageTest): _, statements, missing, _ = cov.analysis("recur.py") self.assertEqual(statements, [1, 2, 3, 5, 7, 8, 9, 10, 11]) - self.assertEqual(missing, expected_missing) + self.assertEqual(expected_missing, missing) # Get a warning about the stackoverflow effect on the tracing function. if pytrace: # pragma: no metacov |