(self)
| 306 | self._test_not_equal(np.nan, 1) |
| 307 | |
| 308 | def test_inf_items(self): |
| 309 | self._assert_func(np.inf, np.inf) |
| 310 | self._assert_func([np.inf], [np.inf]) |
| 311 | self._test_not_equal(np.inf, [np.inf]) |
| 312 | |
| 313 | def test_datetime(self): |
| 314 | self._test_equal( |
nothing calls this directly
no test coverage detected