summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorINADA Naoki <inada-n@klab.com>2013-02-23 18:01:43 +0900
committerINADA Naoki <inada-n@klab.com>2013-02-23 18:01:43 +0900
commita6859791a2048f5b2aae1ece03a603af63d69633 (patch)
tree1b9f6efd0bd81d1110fe73d1b1ae2bf09e23c7f2 /test
parent5c51203d14ba2420d98f7c9f85a21b3a7b89e1b9 (diff)
downloadmsgpack-python-a6859791a2048f5b2aae1ece03a603af63d69633.tar.gz
Revert "Skip reserved byte"
This reverts commit ff3342aeedb9d21897b0b7275dd68d781f149995.
Diffstat (limited to 'test')
-rw-r--r--test/test_reserved.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/test_reserved.py b/test/test_reserved.py
deleted file mode 100644
index 56b4455..0000000
--- a/test/test_reserved.py
+++ /dev/null
@@ -1,8 +0,0 @@
-import msgpack
-
-reserved_bytes = b"\xc1\xc4\xc5\xc6\xc7\xc8\xc9\xd4\xd5\xd6\xd7\xd8\xd9"
-
-def test_skip_reserved():
- packed_list = msgpack.packb([])
- for b in reserved_bytes:
- assert msgpack.unpackb(b+packed_list, use_list=1) == []