(self)
| 270 | |
| 271 | @pytest.mark.xfail(raises=AssertionError, reason="gh-15896") |
| 272 | def test_round_py_consistency(self): |
| 273 | f = 5.1 * 10**73 |
| 274 | assert_equal(round(np.float64(f), -73), round(f, -73)) |
| 275 | |
| 276 | def test_searchsorted(self): |
| 277 | arr = [-8, -5, -1, 3, 6, 10] |
nothing calls this directly
no test coverage detected