Skip to content

Commit 5f39bfc

Browse files
author
Shoshana Berleant
committed
make python 3 happy
1 parent be215f5 commit 5f39bfc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/algorithms/tests/test_tsnr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def assert_default_outputs(self, outputs):
9797
self.out_filenames['tsnr_file'])
9898

9999
def assert_unchanged(self, expected_ranges):
100-
for key, (min_, max_) in expected_ranges.iteritems():
100+
for key, (min_, max_) in expected_ranges.items():
101101
data = np.asarray(nb.load(self.out_filenames[key])._data)
102102
assert_almost_equal(np.amin(data), min_, decimal=1)
103103
assert_almost_equal(np.amax(data), max_, decimal=1)

0 commit comments

Comments
 (0)