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():
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." )
3535def 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." )
4545def 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." )
5454def test_array ():
5555 x = [0 ] * (2 ** 32 - 1 )
5656 assert unpackb (packb (x )) == x
You can’t perform that action at this time.
0 commit comments