Skip to content
Snippets Groups Projects
Commit f97adfff authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

TEST: Avoid deprecation warnings

parent 856ee2eb
No related branches found
No related tags found
No related merge requests found
......@@ -906,8 +906,8 @@ def _test_ImageWrapper_write_in_overlap(niters, seed, threaded):
# on this copy
expCovSlice = [slice(int(lo), int(hi)) for lo, hi in expCov.T]
expLo = expData[expCovSlice].min()
expHi = expData[expCovSlice].max()
expLo = expData[tuple(expCovSlice)].min()
expHi = expData[tuple(expCovSlice)].max()
wrapper[tuple(sliceobjs)] = newData
_ImageWraper_busy_wait(wrapper)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment