Skip to content

Commit

Permalink
Fix test for a message (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
samdark committed Apr 7, 2021
1 parent 28ac89a commit 88cec8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Proxy/ContainerInterfaceProxyTest.php
Expand Up @@ -142,7 +142,7 @@ public function testGetWithoutConfig(): void
public function testGetAndHasWithWrongId(): void
{
$this->expectException(ContainerExceptionInterface::class);
$this->expectExceptionMessage(sprintf('No definition for %s', ServiceCollectorInterface::class));
$this->expectExceptionMessage(sprintf('No definition or class found for "%s".', ServiceCollectorInterface::class));

$containerProxy = new ContainerInterfaceProxy($this->getContainer(), $this->getConfig());

Expand Down

0 comments on commit 88cec8f

Please sign in to comment.