(self, request, _tables_, head_table_)
| 240 | |
| 241 | @pytest.fixture(params=[("head", True, True), ("head", False, False), ("foob", True, False)]) |
| 242 | def italic_fixture(self, request, _tables_, head_table_): |
| 243 | key, is_italic, expected_value = request.param |
| 244 | head_table_.is_italic = is_italic |
| 245 | _tables_.return_value = {key: head_table_} |
| 246 | font = _Font(None) |
| 247 | return font, expected_value |
| 248 | |
| 249 | @pytest.fixture |
| 250 | def iter_fixture(self, _table_count_, stream_read_): |