Skip to content

Commit 3e6abc5

Browse files
author
Martin Durant
committed
fix
1 parent b32a3e8 commit 3e6abc5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

zarr/tests/test_storage.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -977,8 +977,8 @@ def test_s3_complex(self):
977977

978978
assert (g2.data[:] == expected).all()
979979

980-
b[:] = 5 # write with scalar
981-
assert (b[:] == 5).all()
980+
a[:] = 5 # write with scalar
981+
assert (a[:] == 5).all()
982982

983983
assert g2.data_f['foo'].tolist() == [b"aaa"] * 4 + [b"b"] * 4
984984
with pytest.raises(PermissionError):

0 commit comments

Comments
 (0)