Skip to content

Commit fe78b60

Browse files
Update nibabel/tests/test_volumeutils.py
Co-authored-by: Chris Markiewicz <[email protected]>
1 parent 4769e0c commit fe78b60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nibabel/tests/test_volumeutils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -947,7 +947,7 @@ def test_seek_tell():
947947
# zeros in their wake. BZ2Files can't seek when writing,
948948
# unless we enable the write0 flag to seek_tell
949949
# ZstdFiles also does not support seek forward on write
950-
if (not write0 and in_file in ('test.bz2', 'test.zst')):
950+
if not write0 and in_file in ('test.bz2', 'test.zst'):
951951
# write the zeros by hand for the read test below
952952
fobj.write(b'\x00' * diff)
953953
else:

0 commit comments

Comments
 (0)