(self, request, width, height)
| 224 | ] |
| 225 | ) |
| 226 | def dimensions_set_fixture(self, request, width, height): |
| 227 | start_elm_fixt_name, expected_elm_fixt_name = request.param |
| 228 | start_elm = request.getfixturevalue(start_elm_fixt_name) |
| 229 | shape = BaseShape(start_elm, None) |
| 230 | expected_xml = request.getfixturevalue(expected_elm_fixt_name).xml |
| 231 | return shape, width, height, expected_xml |
| 232 | |
| 233 | @pytest.fixture( |
| 234 | params=[ |