diff options
| author | scimax <max.kellermeier@hotmail.de> | 2020-08-20 12:01:53 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-20 12:01:53 +0200 |
| commit | 8cf0872290fa05b6adc18d53e45e121ef9f74bd3 (patch) | |
| tree | 8329b63deac8bb0d7bfce6ccc90e7eeff893044d | |
| parent | 11ae4340173c644768368755bba93ced112b4505 (diff) | |
| download | numpy-8cf0872290fa05b6adc18d53e45e121ef9f74bd3.tar.gz | |
Update numpy/lib/tests/test_function_base.py
Co-authored-by: Eric Wieser <wieser.eric@gmail.com>
| -rw-r--r-- | numpy/lib/tests/test_function_base.py | 2 |
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 |
