(self)
| 214 | |
| 215 | @pytest.mark.xfail(raises=AssertionError, reason="gh-15896") |
| 216 | def test_round_py_consistency(self): |
| 217 | f = 5.1 * 10**73 |
| 218 | assert_equal(round(np.float64(f), -73), round(f, -73)) |
| 219 | |
| 220 | def test_searchsorted(self): |
| 221 | arr = [-8, -5, -1, 3, 6, 10] |
nothing calls this directly
no test coverage detected