Skip to content

Commit 9eb88c9

Browse files
committed
Improve compatibility with PHPStan 1.0
1 parent 54ed35b commit 9eb88c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: tests/Rules/PHPUnit/AssertSameMethodDifferentTypesRuleTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function testRule(): void
3636
13,
3737
],
3838
[
39-
'Call to method PHPUnit\Framework\Assert::assertSame() with array(\'a\', \'b\') and array(1, 2) will always evaluate to false.',
39+
'Call to method PHPUnit\Framework\Assert::assertSame() with array{\'a\', \'b\'} and array{1, 2} will always evaluate to false.',
4040
14,
4141
],
4242
[
@@ -56,7 +56,7 @@ public function testRule(): void
5656
47,
5757
],
5858
[
59-
'Call to method PHPUnit\Framework\Assert::assertSame() with array(\'a\', 2, 3.0) and array(\'a\', 1) will always evaluate to false.',
59+
'Call to method PHPUnit\Framework\Assert::assertSame() with array{\'a\', 2, 3.0} and array{\'a\', 1} will always evaluate to false.',
6060
52,
6161
],
6262
]);

0 commit comments

Comments
 (0)