Update LoggerTest.php

This commit is contained in:
Panagiotis Koursaris 2017-03-23 15:28:21 +02:00 committed by GitHub
parent 52cadb4553
commit 284003c95d

View File

@ -12,7 +12,7 @@ class LoggerTest extends TestCase
public function testNullObject()
{
$service = new Service(new NullLogger());
$this->expectOutputString(null);
$this->expectOutputString('');
$service->doSomething();
}