summaryrefslogtreecommitdiff
path: root/numpy/lib/tests/test_function_base.py
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2021-09-01 16:51:41 +0300
committerGitHub <noreply@github.com>2021-09-01 16:51:41 +0300
commit68299575d8595d904aff6f28e12d21bf6428a4ba (patch)
treef59f89c4786b8298fe25ef4f082f51366b388bb3 /numpy/lib/tests/test_function_base.py
parent0656fc493591be2200b0b0df5e14fb547aa4702f (diff)
parent64f15a94708095bf9d29af5dbfcc4b654a57248a (diff)
downloadnumpy-68299575d8595d904aff6f28e12d21bf6428a4ba.tar.gz
Merge pull request #19781 from mwtoews/foreach-item
MAINT: refactor "for ... in range(len(" statements
Diffstat (limited to 'numpy/lib/tests/test_function_base.py')
-rw-r--r--numpy/lib/tests/test_function_base.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/numpy/lib/tests/test_function_base.py b/numpy/lib/tests/test_function_base.py
index 1d694e92f..829691b1c 100644
--- a/numpy/lib/tests/test_function_base.py
+++ b/numpy/lib/tests/test_function_base.py
@@ -2772,11 +2772,6 @@ class TestInterp:
assert_almost_equal(np.interp(x, xp, fp, period=360), y)
-def compare_results(res, desired):
- for i in range(len(desired)):
- assert_array_equal(res[i], desired[i])
-
-
class TestPercentile:
def test_basic(self):