Browse Source

remove unnecessary test

tb
ofek 7 years ago
parent
commit
78d804047d
  1. 5
      tests/test_utils.py

5
tests/test_utils.py

@ -58,11 +58,6 @@ def test_bytes_hex_conversion():
assert hex_to_bytes(bytes_to_hex(bytestr)) == bytestr
def test_bytes_int_conversion():
bytestr = b'\x00' + urandom(31)
assert int_to_bytes(bytes_to_int(bytestr)) == bytestr[1:]
def test_bytes_int_conversion_padded():
bytestr = b'\x00' + urandom(31)
assert int_to_bytes_padded(bytes_to_int(bytestr)) == bytestr

Loading…
Cancel
Save