diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2022-12-14 09:54:59 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-14 09:54:59 -0500 |
commit | fd2639a5c21d82c77a42d936a9a2eb854cc37507 (patch) | |
tree | 55ea99f6fee3bf6901a39447bb340eed7825b459 | |
parent | a82cf6732fe9eef09e48dff2d986ca620bc18a1f (diff) | |
parent | dfc4c174d6a0e16da154d525db2fc29ce569f1b4 (diff) | |
download | numpy-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.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) |