(self, request)
| 208 | ] |
| 209 | ) |
| 210 | def position_set_fixture(self, request): |
| 211 | ser_cxml, value, expected_cxml = request.param |
| 212 | data_label = DataLabel(element(ser_cxml), 42) |
| 213 | new_value = None if value is None else getattr(XL_LABEL_POSITION, value) |
| 214 | expected_xml = xml(expected_cxml) |
| 215 | return data_label, new_value, expected_xml |
| 216 | |
| 217 | @pytest.fixture( |
| 218 | params=[ |