Skip to content

Commit 4618ba7

Browse files
committed
Fix build
1 parent 6c45175 commit 4618ba7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/PHPStan/Rules/Arrays/ArrayUnpackingRuleTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@ public function testRule(): void
5252
29,
5353
],
5454
[
55-
'Array unpacking cannot be used on an array with potential string keys: array<int|string, string>',
55+
'Array unpacking cannot be used on an array with potential string keys: array<string>',
5656
40,
5757
],
5858
[
59-
'Array unpacking cannot be used on an array with potential string keys: array<int|string, string>',
59+
'Array unpacking cannot be used on an array with potential string keys: array<string>',
6060
52,
6161
],
6262
[
@@ -87,11 +87,11 @@ public function testRuleDoNotCheckBenevolentUnion(): void
8787
18,
8888
],
8989
[
90-
'Array unpacking cannot be used on an array with potential string keys: array<int|string, string>',
90+
'Array unpacking cannot be used on an array with potential string keys: array<string>',
9191
40,
9292
],
9393
[
94-
'Array unpacking cannot be used on an array with potential string keys: array<int|string, string>',
94+
'Array unpacking cannot be used on an array with potential string keys: array<string>',
9595
52,
9696
],
9797
[

0 commit comments

Comments
 (0)