summaryrefslogtreecommitdiff
path: root/numpy/lib/tests/test_function_base.py
diff options
context:
space:
mode:
authorscimax <max.kellermeier@hotmail.de>2020-08-20 12:01:53 +0200
committerGitHub <noreply@github.com>2020-08-20 12:01:53 +0200
commit8cf0872290fa05b6adc18d53e45e121ef9f74bd3 (patch)
tree8329b63deac8bb0d7bfce6ccc90e7eeff893044d /numpy/lib/tests/test_function_base.py
parent11ae4340173c644768368755bba93ced112b4505 (diff)
downloadnumpy-8cf0872290fa05b6adc18d53e45e121ef9f74bd3.tar.gz
Update numpy/lib/tests/test_function_base.py
Co-authored-by: Eric Wieser <wieser.eric@gmail.com>
Diffstat (limited to 'numpy/lib/tests/test_function_base.py')
-rw-r--r--numpy/lib/tests/test_function_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/tests/test_function_base.py b/numpy/lib/tests/test_function_base.py
index 878fb3de1..44ff7ea81 100644
--- a/numpy/lib/tests/test_function_base.py
+++ b/numpy/lib/tests/test_function_base.py
@@ -1757,7 +1757,7 @@ class TestUnwrap:
# check that unwrap maintains continuity
assert_(np.all(diff(unwrap(rand(10) * 100)) < np.pi))
- def test_minmax(self):
+ def test_period(self):
# check that unwrap removes jumps greater that 255
assert_array_equal(unwrap([1, 1 + 256], interval_size=255), [1, 2])
# check that unwrap maintains continuity