summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorINADA Naoki <inada-n@klab.com>2014-03-26 11:01:44 +0900
committerINADA Naoki <inada-n@klab.com>2014-03-26 11:01:44 +0900
commite99331d1ab793105da2e0a4139059169e5c835b3 (patch)
tree18bdd07da84c8dfb006a573a194ad1386daf3cd0
parentc60ab28ee72e1b179e21f5fbc6efd0f96d6e6467 (diff)
downloadmsgpack-python-e99331d1ab793105da2e0a4139059169e5c835b3.tar.gz
Fix skipif marking.
-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