Skip to content

Commit 1151f68

Browse files
committed
Try again?
1 parent 70f4256 commit 1151f68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/PhpWordTests/Writer/HTML/Element/TableTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ public function testWriteTableCellVMerge(): void
232232
$cell3Query = $xpath->query('//table/tr[3]/td[1]');
233233
self::assertNotFalse($cell3Query);
234234
self::assertCount(1, $cell3Query);
235-
self::assertObjectHasAttribute('attributes', $cell3Query->item(0));
235+
self::assertInstanceOf(DOMNode::class, $cell3Query->item(0));
236236
self::assertNull($cell3Query->item(0)->attributes->getNamedItem('rowspan'));
237237
}
238238
}

0 commit comments

Comments
 (0)