(self)
| 145 | ) |
| 146 | |
| 147 | def test_deprecated_call_raises(self) -> None: |
| 148 | with pytest.raises(pytest.fail.Exception, match="No warnings of type"): |
| 149 | with pytest.deprecated_call(): |
| 150 | self.dep(3, 5) |
| 151 | |
| 152 | def test_deprecated_call(self) -> None: |
| 153 | with pytest.deprecated_call(): |
no test coverage detected