Skip to content

Commit 5331d22

Browse files
committed
Update test
1 parent 39d48e6 commit 5331d22

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/Fixer/TypedClassConstantFixerTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -337,9 +337,9 @@ class HellCoreServiceManagerHelper
337337
PHP,
338338
];
339339

340-
yield 'make multiple constants definition mixed type' => [
341-
'<?php class Foo { public const mixed BAR = 1, BAZ = "two"; }',
342-
'<?php class Foo { public const BAR = 1, BAZ = "two"; }',
340+
yield 'make multiple constants definition statement mixed type even if of single type' => [
341+
'<?php class Foo { public const mixed BAR = 1, BAZ = 2; }',
342+
'<?php class Foo { public const BAR = 1, BAZ = 2; }',
343343
];
344344
}
345345
}

0 commit comments

Comments
 (0)