We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef4d4ee commit 70e39d3Copy full SHA for 70e39d3
tests/test_table.py
@@ -170,6 +170,10 @@ def it_can_replace_its_content_with_a_string_of_text(
170
171
# fixtures -------------------------------------------------------
172
173
+ @pytest.fixture
174
+ def paragraphs_fixture(self):
175
+ return _Cell(element('w:tc/(w:p, w:p)'), None)
176
+
177
@pytest.fixture(params=[
178
('w:tc/w:p', 'foobar',
179
'w:tc/w:p/w:r/w:t"foobar"'),
@@ -184,10 +188,6 @@ def text_set_fixture(self, request):
184
188
expected_xml = xml(expected_cxml)
185
189
return cell, new_text, expected_xml
186
190
187
- @pytest.fixture
- def paragraphs_fixture(self):
- return _Cell(element('w:tc/(w:p, w:p)'), None)
-
191
192
class Describe_Column(object):
193
0 commit comments