(self)
| 835 | assert "d = [10.009]" == title |
| 836 | |
| 837 | def test_warns_for_few_positional_args(self) -> None: |
| 838 | with pytest.warns(FutureWarning, match="Using positional arguments"): |
| 839 | self.darray.plot.scatter("period") |
| 840 | |
| 841 | def test_raises_for_too_many_positional_args(self) -> None: |
| 842 | with pytest.raises(ValueError, match="Using positional arguments"): |