Skip to content

Commit 9f52c50

Browse files
Update test_storage.py
1 parent e1249b5 commit 9f52c50

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
@@ -956,10 +956,10 @@ def test_permissions(self):
956956
store.close()
957957
z = ZipFile('data/store.zip', 'r')
958958
info = z.getinfo('foo')
959-
perm = oct( info.external_attr >> 16 )
959+
perm = oct(info.external_attr >> 16)
960960
assert perm == '0o644'
961961
info = z.getinfo('baz/')
962-
perm = oct( info.external_attr >> 16 )
962+
perm = oct(info.external_attr >> 16)
963963
assert perm == '0o40775'
964964
z.close()
965965

0 commit comments

Comments
 (0)