diff --git a/tests/test_proto.py b/tests/test_proto.py index 66e383c..8031222 100644 --- a/tests/test_proto.py +++ b/tests/test_proto.py @@ -17,7 +17,7 @@ class TestRandomRequestId(TestCase): def _test_value(self, request_id: LittleEndianSignedInt32): """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): """Tests a request id."""