Skip to content

Commit

Permalink
remove previously broken test #10487
Browse files Browse the repository at this point in the history
  • Loading branch information
kkmuffme committed Dec 13, 2023
1 parent 6363b57 commit af39782
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions tests/TypeReconciliation/ValueTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -272,17 +272,6 @@ function foo($f) : void {
if ($s === "a") {}
}',
],
'moreValueReconciliation' => [
'code' => '<?php
$a = rand(0, 1) ? "a" : "b";
$b = rand(0, 1) ? "a" : "b";
$s = rand(0, 1) ? $a : $b;
if (rand(0, 1)) $s = "c";
if ($s === $a) {
} elseif ($s === $b) {}',
],
'negativeInts' => [
'code' => '<?php
class C {
Expand Down

0 comments on commit af39782

Please sign in to comment.