diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2021-11-21 10:56:41 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-21 10:56:41 -0700 |
commit | dc2b556285383e080c9ee6e579feb07ef9d0a4bd (patch) | |
tree | f109efb31e7ba0375c9c99c1b9e3d7796dcfb536 | |
parent | 01073d7ed6e90a382db1532492224b28603081b8 (diff) | |
parent | a5d002e2b969d59e1cea226361f7518921c289e0 (diff) | |
download | numpy-dc2b556285383e080c9ee6e579feb07ef9d0a4bd.tar.gz |
Merge pull request #20427 from charris/fix-umath-longdouble-test
MAINT: Fix longdouble precision check in test_umath.py
-rw-r--r-- | numpy/core/tests/test_umath.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/tests/test_umath.py b/numpy/core/tests/test_umath.py index fc7c592f0..c0b26e75b 100644 --- a/numpy/core/tests/test_umath.py +++ b/numpy/core/tests/test_umath.py @@ -3433,7 +3433,7 @@ class TestComplexFunctions: x_series = np.logspace(-20, -3.001, 200) x_basic = np.logspace(-2.999, 0, 10, endpoint=False) - if glibc_older_than("2.19") and dtype is np.longcomplex: + if dtype is np.longcomplex: if (platform.machine() == 'aarch64' and bad_arcsinh()): pytest.skip("Trig functions of np.longcomplex values known " "to be inaccurate on aarch64 for some compilation " |