Skip to content

Commit d2929fc

Browse files
committed
TEST: Fix rint error message filtering in test_image_api.
1 parent 9a13fd2 commit d2929fc

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

nibabel/tests/test_image_api.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,8 @@ def validate_header_deprecated(self, imaker, params):
148148
with clear_and_catch_warnings() as w:
149149
warnings.simplefilter('always', DeprecationWarning)
150150
# Ignore numpy.rint warning in python3/windows
151-
warnings.simplefilter('ignore', RuntimeWarning, 726)
151+
warnings.filterwarnings('ignore',
152+
'invalid value encountered in rint')
152153
img = imaker()
153154
hdr = img.get_header()
154155
assert_equal(len(w), 1)
@@ -170,6 +171,9 @@ def validate_shape_deprecated(self, imaker, params):
170171
# Check deprecated get_shape API
171172
with clear_and_catch_warnings() as w:
172173
warnings.simplefilter('always', DeprecationWarning)
174+
# Ignore numpy.rint warning in python3/windows
175+
warnings.filterwarnings('ignore',
176+
'invalid value encountered in rint')
173177
img = imaker()
174178
assert_equal(img.get_shape(), params['shape'])
175179
assert_equal(len(w), 1)

0 commit comments

Comments
 (0)