From 3e259efc6d0ffc74e81a6640047d506f2e9640a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Mon, 17 Jun 2019 22:47:41 +0200 Subject: [PATCH] Fix: Use assertSame() --- tests/Unit/ClientFactory/MockFactoryTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Unit/ClientFactory/MockFactoryTest.php b/tests/Unit/ClientFactory/MockFactoryTest.php index 77b21984..935c81d7 100644 --- a/tests/Unit/ClientFactory/MockFactoryTest.php +++ b/tests/Unit/ClientFactory/MockFactoryTest.php @@ -28,6 +28,6 @@ public function testCreateClient() $factory->setClient($client); - $this->assertEquals($client, $factory->createClient()); + $this->assertSame($client, $factory->createClient()); } }