Skip to content

Commit

Permalink
fixed CS
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed May 27, 2016
1 parent a903428 commit d1b77c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Silex/Tests/Provider/MonologServiceProviderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public function testRequestLogging()
$this->assertTrue($app['monolog.handler']->hasDebug('< 200'));

$records = $app['monolog.handler']->getRecords();
if (version_compare('3.1', Kernel::VERSION, '>=')) {
if (Kernel::VERSION_ID >= 30100) {
$this->assertContains('Matched route "GET_foo"', $records[0]['message']);
} else {
$this->assertContains('Matched route "{route}".', $records[0]['message']);
Expand Down

0 comments on commit d1b77c7

Please sign in to comment.