Skip to content

Commit 5a24138

Browse files
committed
Fix test
1 parent 764e9a6 commit 5a24138

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/PHPStan/Analyser/Bug13813IntegrationTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ public function testBug13813(): void
3636
);
3737
} else {
3838
$this->assertSame(
39-
'Notice: Undefined variable $x',
39+
'Notice: Undefined variable: x',
4040
$analyzerResult->getAllPhpErrors()[0]->getMessage(),
4141
);
4242
$this->assertSame(
43-
'Notice: Undefined variable $x',
43+
'Notice: Undefined variable: x',
4444
$analyzerResult->getAllPhpErrors()[1]->getMessage(),
4545
);
4646
}

0 commit comments

Comments
 (0)