Skip to content

Commit a5103c8

Browse files
committed
Update bug-13481.php
1 parent b8e797c commit a5103c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/PHPStan/Analyser/nsrt/bug-13481.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ function bug13481() {
1010
assertType("*ERROR*", str_increment($s));
1111

1212
++$s;
13-
assertType("*ERROR*", $s);
13+
assertType("'ab c2'", $s);
1414
}
1515

1616
function bug13481b() {
1717
$s = '%';
1818
assertType("*ERROR*", str_increment($s));
1919

2020
++$s;
21-
assertType("*ERROR*", $s);
21+
assertType("'%'", $s);
2222
}
2323

0 commit comments

Comments
 (0)