From 2028358c0ee2096791bdc9a9312202c5fc10bab7 Mon Sep 17 00:00:00 2001 From: AJ Meireles Date: Mon, 19 Aug 2024 18:54:16 -0300 Subject: [PATCH] fixing styleci --- tests/Container/ContainerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Container/ContainerTest.php b/tests/Container/ContainerTest.php index c69dfabdbb2d..56018cca63b2 100755 --- a/tests/Container/ContainerTest.php +++ b/tests/Container/ContainerTest.php @@ -650,7 +650,7 @@ public function testUnknownEntryThrowsException() public function testUnknownEntryThrowsExceptionWithExpectedMessage() { $this->expectException(EntryNotFoundException::class); - $this->expectExceptionMessage("No container bind defined for: Taylor."); + $this->expectExceptionMessage('No container bind defined for: Taylor.'); $container = new Container; $container->get('Taylor');