diff options
author | Max Kellermeier <max.kellermeier@hotmail.de> | 2020-08-20 14:34:42 +0200 |
---|---|---|
committer | Max Kellermeier <max.kellermeier@hotmail.de> | 2020-08-20 14:34:42 +0200 |
commit | 3da050660f2140ae387d67218f457442f89fe94e (patch) | |
tree | 998c6b9ffd8baa389182e006d5e908c65b8fb9cf /numpy/lib/tests/test_function_base.py | |
parent | c3ea9b680e458a91e0a7e97ce61d6853c379385f (diff) | |
parent | 8cf0872290fa05b6adc18d53e45e121ef9f74bd3 (diff) | |
download | numpy-3da050660f2140ae387d67218f457442f89fe94e.tar.gz |
Merge branch 'master' of github.com:scimax/numpy
Diffstat (limited to 'numpy/lib/tests/test_function_base.py')
-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 |