Skip to content

Commit

Permalink
SCA: minor code tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
kalessil authored and nicolas-grekas committed Apr 1, 2019
1 parent f67fe12 commit 5993c79
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions Tests/Command/RouterMatchCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,7 @@ private function getKernel()
->expects($this->atLeastOnce())
->method('has')
->will($this->returnCallback(function ($id) {
if ('console.command_loader' === $id) {
return false;
}

return true;
return 'console.command_loader' !== $id;
}))
;
$container
Expand Down

0 comments on commit 5993c79

Please # to comment.