You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/Testing/TypeInferenceTestCase.php
+10-7
Original file line number
Diff line number
Diff line change
@@ -135,7 +135,7 @@ public function assertFileAsserts(
135
135
$variableName = $args[2];
136
136
$this->assertTrue(
137
137
$expectedCertainty->equals($actualCertainty),
138
-
sprintf('Expected %s, actual certainty of variable $%s is %s in %s on line %d.', $expectedCertainty->describe(), $variableName, $actualCertainty->describe(), $file, $args[3]),
138
+
sprintf('Expected %s, actual certainty of %s is %s in %s on line %d.', $expectedCertainty->describe(), $variableName, $actualCertainty->describe(), $file, $args[3]),
139
139
);
140
140
}
141
141
}
@@ -216,15 +216,18 @@ public static function gatherAssertTypes(string $file): array
Copy file name to clipboardexpand all lines: tests/PHPStan/Analyser/NodeScopeResolverTest.php
+1-1
Original file line number
Diff line number
Diff line change
@@ -255,7 +255,7 @@ public function testFile(string $file): void
255
255
$variableName = $args[2];
256
256
257
257
if ($expectedCertainty->equals($actualCertainty) !== true) {
258
-
$failures[] = sprintf("Certainty of variable \$%s on line %d:\nExpected: %s\nActual: %s\n", $variableName, $args[3], $expectedCertainty->describe(), $actualCertainty->describe());
258
+
$failures[] = sprintf("Certainty of %s on line %d:\nExpected: %s\nActual: %s\n", $variableName, $args[3], $expectedCertainty->describe(), $actualCertainty->describe());
0 commit comments