Skip to content

Commit d8df700

Browse files
committed
Merge branch 'PHP-8.3'
* PHP-8.3: Fix run-tests.php differ calculateCommonSubsequence for EXPECTF
2 parents 281555d + 379e913 commit d8df700

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

run-tests.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4050,7 +4050,7 @@ public function calculateCommonSubsequence(array $from, array $to): array
40504050
if ($cFrom === 1) {
40514051
foreach ($to as $toV) {
40524052
if (($this->isEqual)($from[0], $toV)) {
4053-
return [$from[0]];
4053+
return [$toV];
40544054
}
40554055
}
40564056

0 commit comments

Comments
 (0)