Browse Source

changed assert statement to self.assertTrue().

pull/2/head
Richard Neumann 4 years ago
parent
commit
d7afd2645e
  1. 2
      tests/test_proto.py

2
tests/test_proto.py

@ -17,7 +17,7 @@ class TestRandomRequestId(TestCase):
def _test_value(self, request_id: LittleEndianSignedInt32): def _test_value(self, request_id: LittleEndianSignedInt32):
"""Tests the value of a request id.""" """Tests the value of a request id."""
assert 0 <= request_id <= LittleEndianSignedInt32.MAX self.assertTrue(0 <= request_id <= LittleEndianSignedInt32.MAX)
def _test_request_id(self, request_id: LittleEndianSignedInt32): def _test_request_id(self, request_id: LittleEndianSignedInt32):
"""Tests a request id.""" """Tests a request id."""

Loading…
Cancel
Save