summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Bienkowski <hexagonrecursion@gmail.com>2021-02-16 13:38:06 +0000
committerGitHub <noreply@github.com>2021-02-16 22:38:06 +0900
commit4b0819dca941ba3fd27ea127e835698c33705365 (patch)
tree331c53309ce5dd43d9f1440657abb4f95a64fd15
parent1e728a2e0b7f263a4c77d6cdb6ec7c7e2a91872f (diff)
downloadmsgpack-python-4b0819dca941ba3fd27ea127e835698c33705365.tar.gz
Remove redundant code (#460)
-rw-r--r--test/test_unpack.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/test/test_unpack.py b/test/test_unpack.py
index 057b7bf..aa4c01f 100644
--- a/test/test_unpack.py
+++ b/test/test_unpack.py
@@ -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()