(self, request)
| 595 | ] |
| 596 | ) |
| 597 | def language_id_set_fixture(self, request): |
| 598 | rPr_cxml, new_value, expected_rPr_cxml = request.param |
| 599 | font = Font(element(rPr_cxml)) |
| 600 | expected_xml = xml(expected_rPr_cxml) |
| 601 | return font, new_value, expected_xml |
| 602 | |
| 603 | @pytest.fixture(params=[("a:rPr", None), ("a:rPr/a:latin{typeface=Foobar}", "Foobar")]) |
| 604 | def name_get_fixture(self, request): |