From ef61e64b49ab213547af8c17740808953885cd88 Mon Sep 17 00:00:00 2001 From: Dan0sz <18595395+Dan0sz@users.noreply.github.com> Date: Wed, 17 Jul 2024 10:56:19 +0200 Subject: [PATCH] Fixed: test --- tests/unit/ClientFactoryTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/unit/ClientFactoryTest.php b/tests/unit/ClientFactoryTest.php index d139ee15..06d1211a 100644 --- a/tests/unit/ClientFactoryTest.php +++ b/tests/unit/ClientFactoryTest.php @@ -15,7 +15,8 @@ class ClientFactoryTest extends TestCase { */ public function testBuild() { $clientFactory = new ClientFactory(); + $client = $clientFactory->build(); - $this->assertInstanceOf( Client::class, $clientFactory ); + $this->assertInstanceOf( Client::class, $client ); } }