Skip to content

Commit

Permalink
fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
timacdonald committed May 15, 2021
1 parent 80f0dc5 commit f69951f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/LogFakeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -584,10 +584,10 @@ public function testDummyMethods(): void
{
$logFake = new LogFake();

$logFake->listen();
$logFake->extend();
$logFake->getEventDispatcher();
$logFake->setEventDispatcher();
$this->assertSame($logFake->getLogger(), $logFake);
$this->assertNull($logFake->listen());
$this->assertNull($logFake->extend());
$this->assertNull($logFake->getEventDispatcher());
$this->assertNull($logFake->setEventDispatcher());
}
}

0 comments on commit f69951f

Please sign in to comment.