summaryrefslogtreecommitdiff
path: root/tests/test_backward.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_backward.py')
-rw-r--r--tests/test_backward.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/test_backward.py b/tests/test_backward.py
index 8acb8707..767a7ac8 100644
--- a/tests/test_backward.py
+++ b/tests/test_backward.py
@@ -6,7 +6,6 @@
from coverage.backunittest import TestCase
from coverage.backward import iitems, binary_bytes, bytes_to_ints
-
class BackwardTest(TestCase):
"""Tests of things from backward.py."""
@@ -18,5 +17,5 @@ class BackwardTest(TestCase):
def test_binary_bytes(self):
byte_values = [0, 255, 17, 23, 42, 57]
bb = binary_bytes(byte_values)
- self.assertEqual(len(bb), len(byte_values))
- self.assertEqual(byte_values, list(bytes_to_ints(bb)))
+ assert len(bb) == len(byte_values)
+ assert byte_values == list(bytes_to_ints(bb))