diff options
author | mattip <matti.picus@gmail.com> | 2018-05-24 19:26:46 -0700 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2018-05-24 19:29:00 -0700 |
commit | a0464e883b2faa3c45852f0376e42450e07d914b (patch) | |
tree | f7e302e1793feb4710ff6c5d09088c08b108364c | |
parent | 055620ccd669ea56d83391e107a467824cd5b60b (diff) | |
download | numpy-a0464e883b2faa3c45852f0376e42450e07d914b.tar.gz |
TST: windows builds now properly support floating error states
-rw-r--r-- | numpy/core/tests/test_numeric.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/core/tests/test_numeric.py b/numpy/core/tests/test_numeric.py index 95e9f8497..53486dc51 100644 --- a/numpy/core/tests/test_numeric.py +++ b/numpy/core/tests/test_numeric.py @@ -552,7 +552,6 @@ class TestFloatExceptions(object): self.assert_raises_fpe(fpeerr, flop, sc1, sc2[()]) self.assert_raises_fpe(fpeerr, flop, sc1[()], sc2[()]) - @pytest.mark.xfail(reason="See ticket #2350") def test_floating_exceptions(self): # Test basic arithmetic function errors with np.errstate(all='raise'): |