File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -977,8 +977,8 @@ def test_s3_complex(self):
977
977
978
978
assert (g2 .data [:] == expected ).all ()
979
979
980
- g2 . data [:] = 5 # write with scalar
981
- assert (g2 . data [:] == 5 ).all ()
980
+ b [:] = 5 # write with scalar
981
+ assert (b [:] == 5 ).all ()
982
982
983
983
assert g2 .data_f ['foo' ].tolist () == [b"aaa" ] * 4 + [b"b" ] * 4
984
984
with pytest .raises (PermissionError ):
@@ -1015,7 +1015,8 @@ def s3(request):
1015
1015
1016
1016
port = 5555
1017
1017
endpoint_uri = 'http://127.0.0.1:%s/' % port
1018
- proc = subprocess .Popen (shlex .split ("moto_server s3 -p %s" % port ))
1018
+ proc = subprocess .Popen (shlex .split ("moto_server s3 -p %s" % port ),
1019
+ stderr = subprocess .DEVNULL , stdout = subprocess .DEVNULL )
1019
1020
1020
1021
timeout = 5
1021
1022
while timeout > 0 :
You can’t perform that action at this time.
0 commit comments