Remove redundant code (#460)

This commit is contained in:
Andrey Bienkowski 2021-02-16 13:38:06 +00:00 committed by GitHub
parent 1e728a2e0b
commit 4b0819dca9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -90,10 +90,3 @@ def test_unpacker_tell_read_bytes():
assert obj == unp
assert pos == unpacker.tell()
assert unpacker.read_bytes(n) == raw
if __name__ == "__main__":
test_unpack_array_header_from_file()
test_unpacker_hook_refcnt()
test_unpacker_ext_hook()
test_unpacker_tell()