Use assertSame instead of assertEquals.

This commit is contained in:
Bilge
2020-08-23 13:53:19 +01:00
parent cd4032040a
commit 7947413a76
15 changed files with 148 additions and 148 deletions
@@ -50,7 +50,7 @@ class FallbackNodeProviderTest extends TestCase
));
$node = $provider->getNode();
$this->assertEquals('57764a07f756', $node);
$this->assertSame('57764a07f756', $node->toString());
}
public function testGetNodeThrowsExceptionWhenNoNodesFound(): void