diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2021-06-05 13:40:04 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-05 13:40:04 -0600 |
commit | f23ade75773f5e94c030c40cae5b6e081b650205 (patch) | |
tree | c82ed80842f7339a48245545c4b509f46c7df082 /numpy/lib/tests/test_regression.py | |
parent | ffa5ece3547b6e973167aadde82f8d6b4e4380d3 (diff) | |
parent | 4353b9011d64a419c9dfa346824b82167f9ff16e (diff) | |
download | numpy-f23ade75773f5e94c030c40cae5b6e081b650205.tar.gz |
Merge pull request #19170 from seberg/undo-string-promotion-warning
API: Delay string and number promotion deprecation/future warning
Diffstat (limited to 'numpy/lib/tests/test_regression.py')
-rw-r--r-- | numpy/lib/tests/test_regression.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/numpy/lib/tests/test_regression.py b/numpy/lib/tests/test_regression.py index 94fac7ef0..373226277 100644 --- a/numpy/lib/tests/test_regression.py +++ b/numpy/lib/tests/test_regression.py @@ -64,8 +64,7 @@ class TestRegression: def test_mem_string_concat(self): # Ticket #469 x = np.array([]) - with pytest.warns(FutureWarning): - np.append(x, 'asdasd\tasdasd') + np.append(x, 'asdasd\tasdasd') def test_poly_div(self): # Ticket #553 |