()
| 1049 | |
| 1050 | |
| 1051 | def test_transformwrapper(): |
| 1052 | t = mtransforms.TransformWrapper(mtransforms.Affine2D()) |
| 1053 | with pytest.raises(ValueError, match=( |
| 1054 | r"The input and output dims of the new child \(1, 1\) " |
| 1055 | r"do not match those of current child \(2, 2\)")): |
| 1056 | t.set(scale.LogTransform(10)) |
| 1057 | |
| 1058 | |
| 1059 | @check_figures_equal() |
nothing calls this directly
no test coverage detected
searching dependent graphs…