Skip to content

Commit

Permalink
Improve test
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentLanglet committed Mar 13, 2024
1 parent 8826787 commit 7c577d9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion tests/Fixtures/Integration/set/@PER-CS2.0.test-in.php
Expand Up @@ -43,8 +43,10 @@ class Aaa implements

$fn = fn ($a) => $a;

$array = [
$arrayNotMultiline = ['foo' => 'bar', 'foo2' => 'bar'];
$arrayMultiline = [
'foo' => 'bar',
'foo2' => 'bar',
];

?>
4 changes: 3 additions & 1 deletion tests/Fixtures/Integration/set/@PER-CS2.0.test-out.php
Expand Up @@ -51,6 +51,8 @@ class Aaa implements

$fn = fn($a) => $a;

$array = [
$arrayNotMultiline = ['foo' => 'bar', 'foo2' => 'bar'];
$arrayMultiline = [
'foo' => 'bar',
'foo2' => 'bar',
];

0 comments on commit 7c577d9

Please sign in to comment.