summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2022-12-14 09:54:59 -0500
committerGitHub <noreply@github.com>2022-12-14 09:54:59 -0500
commitfd2639a5c21d82c77a42d936a9a2eb854cc37507 (patch)
tree55ea99f6fee3bf6901a39447bb340eed7825b459
parenta82cf6732fe9eef09e48dff2d986ca620bc18a1f (diff)
parentdfc4c174d6a0e16da154d525db2fc29ce569f1b4 (diff)
downloadnumpy-fd2639a5c21d82c77a42d936a9a2eb854cc37507.tar.gz
Merge pull request #22799 from seberg/remove-xfails
TST: Remove outdated xfail from quantile tests
-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)