8000 Revert "Fix test for Python 3." · jnothman/msgpack-python@5c51203 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5c51203

Browse files
committed
Revert "Fix test for Python 3."
This reverts commit 43dd224.
1 parent f0fd90a commit 5c51203

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

test/test_reserved.py

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,6 @@
11
import msgpack
22

3-
reserved_bytes = [
4-
b"\xc1",
5-
b"\xc4",
6-
b"\xc5",
7-
b"\xc6",
8-
b"\xc7",
9-
b"\xc8",
10-
b"\xc9",
11-
b"\xd4",
12-
b"\xd5",
13-
b"\xd6",
14-
b"\xd7",
15-
b"\xd8",
16-
b"\xd9",
17-
]
3+
reserved_bytes = b"\xc1\xc4\xc5\xc6\xc7\xc8\xc9\xd4\xd5\xd6\xd7\xd8\xd9"
184

195
def test_skip_reserved():
206
packed_list = msgpack.packb([])

0 commit comments

Comments
 (0)
0