(self)
| 6319 | assert_almost_equal(cmat.var(), cmat_swapped.var()) |
| 6320 | |
| 6321 | def test_var_axis_error(self): |
| 6322 | # Ensure that AxisError is raised instead of IndexError when axis is |
| 6323 | # out of bounds, see gh-15817. |
| 6324 | with assert_raises(np.exceptions.AxisError): |
| 6325 | np.arange(10).var(axis=2) |
| 6326 | |
| 6327 | def test_var_where(self): |
| 6328 | a = np.arange(25).reshape((5, 5)) |
nothing calls this directly
no test coverage detected