Skip to content

Commit 0922369

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

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nibabel/tests/test_arraywriters.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,8 +285,8 @@ def test_slope_inter_castable():
285285
in_arr = arr.astype(in_dtt)
286286
with pytest.raises(WriterError):
287287
ArrayWriter(in_arr, out_dtt)
288-
_ = SlopeArrayWriter(arr.astype(in_dtt), out_dtt) # no error
289-
_ = SlopeInterArrayWriter(arr.astype(in_dtt), out_dtt) # no error
288+
SlopeArrayWriter(arr.astype(in_dtt), out_dtt) # no error
289+
SlopeInterArrayWriter(arr.astype(in_dtt), out_dtt) # no error
290290
for in_dtt, out_dtt, arr, slope_only, slope_inter, neither in (
291291
(np.float32, np.float32, 1, True, True, True),
292292
(np.float64, np.float32, 1, True, True, True),

0 commit comments

Comments
 (0)