summaryrefslogtreecommitdiff
path: root/test/test_limits.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_limits.py')
-rw-r--r--test/test_limits.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_limits.py b/test/test_limits.py
index 5d285e7..413d651 100644
--- a/test/test_limits.py
+++ b/test/test_limits.py
@@ -8,12 +8,12 @@ from msgpack import packb, unpackb, Packer
def test_integer():
x = -(2 ** 63)
assert unpackb(packb(x)) == x
- with pytest.raises(OverflowError):
+ with pytest.raises((OverflowError, ValueError)):
packb(x-1)
x = 2 ** 64 - 1
assert unpackb(packb(x)) == x
- with pytest.raises(OverflowError):
+ with pytest.raises((OverflowError, ValueError)):
packb(x+1)