diff options
author | Sebastian Berg <sebastianb@nvidia.com> | 2022-12-14 15:02:58 +0100 |
---|---|---|
committer | Sebastian Berg <sebastianb@nvidia.com> | 2022-12-14 15:02:58 +0100 |
commit | dfc4c174d6a0e16da154d525db2fc29ce569f1b4 (patch) | |
tree | 55ea99f6fee3bf6901a39447bb340eed7825b459 | |
parent | a82cf6732fe9eef09e48dff2d986ca620bc18a1f (diff) | |
download | numpy-dfc4c174d6a0e16da154d525db2fc29ce569f1b4.tar.gz |
TST: Remove outdated xfail from quantile tests
There should be more tests for this, but this now passes.
-rw-r--r-- | numpy/lib/tests/test_function_base.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/lib/tests/test_function_base.py b/numpy/lib/tests/test_function_base.py index e38a187d8..ecba35f2d 100644 --- a/numpy/lib/tests/test_function_base.py +++ b/numpy/lib/tests/test_function_base.py @@ -3484,7 +3484,6 @@ class TestQuantile: assert_equal(np.quantile(x, 1), 3.5) assert_equal(np.quantile(x, 0.5), 1.75) - @pytest.mark.xfail(reason="See gh-19154") def test_correct_quantile_value(self): a = np.array([True]) tf_quant = np.quantile(True, False) |