Skip to content

Commit

Permalink
Use assertSame
Browse files Browse the repository at this point in the history
  • Loading branch information
CyrilMazur committed Feb 11, 2018
1 parent e5e80e5 commit 366c1fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Log/LogManagerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ public function testLogManagerCachesLoggerInstances()
$logger1 = $manager->channel('single')->getLogger();
$logger2 = $manager->channel('single')->getLogger();

$this->assertEquals(spl_object_id($logger1), spl_object_id($logger2));
$this->assertSame($logger1, $logger2);
}
}

0 comments on commit 366c1fc

Please sign in to comment.