Skip to content

Commit 3e259ef

Browse files
committed
Fix: Use assertSame()
1 parent 5044b65 commit 3e259ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Unit/ClientFactory/MockFactoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ public function testCreateClient()
2828

2929
$factory->setClient($client);
3030

31-
$this->assertEquals($client, $factory->createClient());
31+
$this->assertSame($client, $factory->createClient());
3232
}
3333
}

0 commit comments

Comments
 (0)