8000 Fix skipif marking. · Vayu/msgpack-python@e99331d · GitHub
[go: up one dir, main page]

Skip to content

Commit e99331d

Browse files
committed
Fix skipif marking.
1 parent c60ab28 commit e99331d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/test_limits.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def test_map_header():
3131
packer.pack_array_header(2**32)
3232

3333

34-
@pytest.mark.skipif(True, "Requires very large memory.")
34+
@pytest.mark.skipif(True, reason="Requires very large memory.")
3535
def test_binary():
3636
x = b'x' * (2**32 - 1)
3737
assert unpackb(packb(x)) == x
@@ -41,7 +41,7 @@ def test_binary():
4141
packb(x)
4242

4343

44-
@pytest.mark.skipif(True, "Requires very large memory.")
44+
@pytest.mark.skipif(True, reason="Requires very large memory.")
4545
def test_string():
4646
x = u'x' * (2**32 - 1)
4747
assert unpackb(packb(x)) == x
@@ -50,7 +50,7 @@ def test_string():
5050
packb(x)
5151

5252

53-
@pytest.mark.skipif(True, "Requires very large memory.")
53+
@pytest.mark.skipif(True, reason="Requires very large memory.")
5454
def test_array():
5555
x = [0] * (2**32 - 1)
5656
assert unpackb(packb(x)) == x

0 commit comments

Comments
 (0)
0