diff --git a/tests/Fixer/ListNotation/ListSyntaxFixerTest.php b/tests/Fixer/ListNotation/ListSyntaxFixerTest.php index c1bc60ec091..8be10162abe 100644 --- a/tests/Fixer/ListNotation/ListSyntaxFixerTest.php +++ b/tests/Fixer/ListNotation/ListSyntaxFixerTest.php @@ -90,8 +90,8 @@ public function updateAttributeKey($key, $value) yield [' list(1, 2) = getList()];', - ' [1, 2] = getList()];', + ' list($x, $y) = getList()];', + ' [$x, $y] = getList()];', ]; }