mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-07 10:19:51 +00:00
Fix skipif marking.
This commit is contained in:
parent
c60ab28ee7
commit
e99331d1ab
1 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue