summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/test_limits.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_limits.py b/test/test_limits.py
index 2879c0a..5d285e7 100644
--- a/test/test_limits.py
+++ b/test/test_limits.py
@@ -31,7 +31,7 @@ def test_map_header():
packer.pack_array_header(2**32)
-@pytest.mark.skipif(True, "Requires very large memory.")
+@pytest.mark.skipif(True, reason="Requires very large memory.")
def test_binary():
x = b'x' * (2**32 - 1)
assert unpackb(packb(x)) == x
@@ -41,7 +41,7 @@ def test_binary():
packb(x)
-@pytest.mark.skipif(True, "Requires very large memory.")
+@pytest.mark.skipif(True, reason="Requires very large memory.")
def test_string():
x = u'x' * (2**32 - 1)
assert unpackb(packb(x)) == x
@@ -50,7 +50,7 @@ def test_string():
packb(x)
-@pytest.mark.skipif(True, "Requires very large memory.")
+@pytest.mark.skipif(True, reason="Requires very large memory.")
def test_array():
x = [0] * (2**32 - 1)
assert unpackb(packb(x)) == x