File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ def test_map_header():
31
31
packer .pack_array_header (2 ** 32 )
32
32
33
33
34
- @pytest .mark .skipif (True , "Requires very large memory." )
34
+ @pytest .mark .skipif (True , reason = "Requires very large memory." )
35
35
def test_binary ():
36
36
x = b'x' * (2 ** 32 - 1 )
37
37
assert unpackb (packb (x )) == x
@@ -41,7 +41,7 @@ def test_binary():
41
41
packb (x )
42
42
43
43
44
- @pytest .mark .skipif (True , "Requires very large memory." )
44
+ @pytest .mark .skipif (True , reason = "Requires very large memory." )
45
45
def test_string ():
46
46
x = u'x' * (2 ** 32 - 1 )
47
47
assert unpackb (packb (x )) == x
@@ -50,7 +50,7 @@ def test_string():
50
50
packb (x )
51
51
52
52
53
- @pytest .mark .skipif (True , "Requires very large memory." )
53
+ @pytest .mark .skipif (True , reason = "Requires very large memory." )
54
54
def test_array ():
55
55
x = [0 ] * (2 ** 32 - 1 )
56
56
assert unpackb (packb (x )) == x
You can’t perform that action at this time.
0 commit comments