Skip to content

Commit 36d36fb

Browse files
Update nibabel/tests/test_arraywriters.py
Co-authored-by: Chris Markiewicz <[email protected]>
1 parent 37ff0eb commit 36d36fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nibabel/tests/test_arraywriters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ def test_slope_inter_castable():
276276
for out_dtt in NUMERIC_TYPES:
277277
for klass in (ArrayWriter, SlopeArrayWriter, SlopeInterArrayWriter):
278278
arr = np.zeros((5,), dtype=in_dtt)
279-
_ = klass(arr, out_dtt) # no error
279+
klass(arr, out_dtt) # no error
280280
# Test special case of none finite
281281
# This raises error for ArrayWriter, but not for the others
282282
arr = np.array([np.inf, np.nan, -np.inf])

0 commit comments

Comments
 (0)