(self)
| 161 | assert_equal(other.symbol, 'z') |
| 162 | |
| 163 | def test_truncate(self): |
| 164 | other = self.p.truncate(2) |
| 165 | assert_equal(other.symbol, 'z') |
| 166 | |
| 167 | @pytest.mark.parametrize('kwarg', ( |
| 168 | {'domain': [-10, 10]}, |
nothing calls this directly
no test coverage detected