Skip to content

Commit 22f8455

Browse files
Filter handler: fixed php 5.3 issue in tests
1 parent f296d4b commit 22f8455

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/DependencyInjection/FixtureMonologExtensionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public function testLoadWithSeveralHandlers()
4343

4444
$handler = $container->getDefinition('monolog.handler.filtered');
4545
$this->assertDICDefinitionClass($handler, '%monolog.handler.filter.class%');
46-
$this->assertDICConstructorArguments($handler, array(new Reference('monolog.handler.nested2'), [\Monolog\Logger::WARNING, \Monolog\Logger::ERROR], \Monolog\Logger::EMERGENCY, true));
46+
$this->assertDICConstructorArguments($handler, array(new Reference('monolog.handler.nested2'), array(\Monolog\Logger::WARNING, \Monolog\Logger::ERROR), \Monolog\Logger::EMERGENCY, true));
4747
}
4848

4949
public function testLoadWithOverwriting()

0 commit comments

Comments
 (0)