(self, tr_cxml: str, expected_value: int | None, parent_: Mock)
| 697 | ], |
| 698 | ) |
| 699 | def it_knows_its_height(self, tr_cxml: str, expected_value: int | None, parent_: Mock): |
| 700 | row = _Row(cast(CT_Row, element(tr_cxml)), parent_) |
| 701 | assert row.height == expected_value |
| 702 | |
| 703 | @pytest.mark.parametrize( |
| 704 | ("tr_cxml", "new_value", "expected_cxml"), |