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 d0e50ad commit f1bd033Copy full SHA for f1bd033
tests/Unit/Domain/Subscription/MessageHandler/DynamicTableMessageHandlerTest.php
@@ -123,8 +123,9 @@ public function testInvokeThrowsForInvalidTableName(): void
123
$handler = new DynamicTableMessageHandler($this->schemaManager);
124
125
$this->expectException(InvalidArgumentException::class);
126
- $this->expectExceptionMessage('Invalid list table name');
+ $this->expectExceptionMessage('Invalid list table name: ' . $invalidName);
127
$handler($message);
128
+ $this->assertTrue(true);
129
}
130
131
public function testInvokeSwallowsTableExistsRace(): void
0 commit comments