summaryrefslogtreecommitdiff
path: root/numpy/lib/tests/test_function_base.py
diff options
context:
space:
mode:
authorSebastian Berg <sebastianb@nvidia.com>2022-12-14 15:02:58 +0100
committerSebastian Berg <sebastianb@nvidia.com>2022-12-14 15:02:58 +0100
commitdfc4c174d6a0e16da154d525db2fc29ce569f1b4 (patch)
tree55ea99f6fee3bf6901a39447bb340eed7825b459 /numpy/lib/tests/test_function_base.py
parenta82cf6732fe9eef09e48dff2d986ca620bc18a1f (diff)
downloadnumpy-dfc4c174d6a0e16da154d525db2fc29ce569f1b4.tar.gz
TST: Remove outdated xfail from quantile tests
There should be more tests for this, but this now passes.
Diffstat (limited to 'numpy/lib/tests/test_function_base.py')
-rw-r--r--numpy/lib/tests/test_function_base.py1
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)