summaryrefslogtreecommitdiff
path: root/test/test_except.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_except.py')
-rw-r--r--test/test_except.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_except.py b/test/test_except.py
index 01961d2..5544f2b 100644
--- a/test/test_except.py
+++ b/test/test_except.py
@@ -55,9 +55,9 @@ def test_invalidvalue():
def test_strict_map_key():
valid = {u"unicode": 1, b"bytes": 2}
packed = packb(valid, use_bin_type=True)
- assert valid == unpackb(packed, raw=True, strict_map_key=True)
+ assert valid == unpackb(packed, raw=False, strict_map_key=True)
invalid = {42: 1}
packed = packb(invalid, use_bin_type=True)
with raises(ValueError):
- unpackb(packed, raw=True, strict_map_key=True)
+ unpackb(packed, raw=False, strict_map_key=True)