Skip to content

Commit 134ee42

Browse files
committed
Yet another missed [] to array() conversion
1 parent 5814549 commit 134ee42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Sabberworm/CSS/ParserTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ function testLineNumbersParsing() {
456456

457457
$aActual = array();
458458
foreach ($oDoc->getContents() as $oContent) {
459-
$aActual[$oContent->getLineNo()] = [get_class($oContent)];
459+
$aActual[$oContent->getLineNo()] = array(get_class($oContent));
460460
if ($oContent instanceof KeyFrame) {
461461
foreach ($oContent->getContents() as $block) {
462462
$aActual[$oContent->getLineNo()][] = $block->getLineNo();

0 commit comments

Comments
 (0)