Skip to content

Commit 6a4cef0

Browse files
committed
fix test option range
1 parent 367aff7 commit 6a4cef0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ def test_option_range_high(self):
212212
dumps() option out of range high
213213
"""
214214
with pytest.raises(orjson.JSONEncodeError):
215-
orjson.dumps(True, option=1 << 12)
215+
orjson.dumps(True, option=1 << 13)
216216

217217
def test_opts_multiple(self):
218218
"""

0 commit comments

Comments
 (0)