(self, request)
| 413 | ] |
| 414 | ) |
| 415 | def margin_set_fixture(self, request): |
| 416 | tc_cxml, margin_prop_name, new_value, expected_tc_cxml = request.param |
| 417 | cell = _Cell(element(tc_cxml), None) |
| 418 | expected_xml = xml(expected_tc_cxml) |
| 419 | return cell, margin_prop_name, new_value, expected_xml |
| 420 | |
| 421 | @pytest.fixture(params=["margin_left", "margin_right", "margin_top", "margin_bottom"]) |
| 422 | def margin_raises_fixture(self, request): |