(self)
| 288 | |
| 289 | @pytest.mark.filterwarnings("ignore::FutureWarning") |
| 290 | def test_univariate_ufunc(self): |
| 291 | assert_sparse_equal(np.sin(self.data), np.sin(self.var).data) |
| 292 | |
| 293 | @pytest.mark.filterwarnings("ignore::FutureWarning") |
| 294 | def test_bivariate_ufunc(self): |
nothing calls this directly
no test coverage detected