Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
kubawerlos committed Dec 20, 2021
1 parent a53b68f commit b7c315f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Fixer/ListNotation/ListSyntaxFixerTest.php
Expand Up @@ -90,8 +90,8 @@ public function updateAttributeKey($key, $value)
yield ['<?php [$b[$a]] = $foo();'];

yield [
'<?php [$iHaveList => list(1, 2) = getList()];',
'<?php [$iHaveList => [1, 2] = getList()];',
'<?php [$iHaveList => list($x, $y) = getList()];',
'<?php [$iHaveList => [$x, $y] = getList()];',
];
}

Expand Down

0 comments on commit b7c315f

Please sign in to comment.