We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3da0413 commit 263de74Copy full SHA for 263de74
tests/SchemaAnalyzerTest.php
@@ -554,7 +554,8 @@ public function testWringTableName()
554
$schemaManager = $this->getCompleteSchemaManager();
555
556
$schemaAnalyzer = new SchemaAnalyzer($schemaManager);
557
- $this->expectException(SchemaAnalyzerTableNotFoundException::class, "Could not find table 'rights'. Did you mean 'right'?");
+ $this->expectException(SchemaAnalyzerTableNotFoundException::class);
558
+ $this->expectExceptionMessage("Could not find table 'rights'. Did you mean 'right'?");
559
$junctionTables = $schemaAnalyzer->getShortestPath('role', 'rights');
560
}
561
0 commit comments