@@ -37,7 +37,7 @@ public function testLoadWithSeveralHandlers()
3737
3838 $ handler = $ container ->getDefinition ('monolog.handler.custom ' );
3939 $ this ->assertDICDefinitionClass ($ handler , 'Monolog\Handler\StreamHandler ' );
40- $ this ->assertDICConstructorArguments ($ handler , array ('/tmp/symfony.log ' , \Monolog \Logger::ERROR , false , 0666 ));
40+ $ this ->assertDICConstructorArguments ($ handler , array ('/tmp/symfony.log ' , \Monolog \Logger::ERROR , false , 0666 , false ));
4141
4242 $ handler = $ container ->getDefinition ('monolog.handler.main ' );
4343 $ this ->assertDICDefinitionClass ($ handler , 'Monolog\Handler\FingersCrossedHandler ' );
@@ -65,7 +65,7 @@ public function testLoadWithOverwriting()
6565
6666 $ handler = $ container ->getDefinition ('monolog.handler.custom ' );
6767 $ this ->assertDICDefinitionClass ($ handler , 'Monolog\Handler\StreamHandler ' );
68- $ this ->assertDICConstructorArguments ($ handler , array ('/tmp/symfony.log ' , \Monolog \Logger::WARNING , true , null ));
68+ $ this ->assertDICConstructorArguments ($ handler , array ('/tmp/symfony.log ' , \Monolog \Logger::WARNING , true , null , false ));
6969
7070 $ handler = $ container ->getDefinition ('monolog.handler.main ' );
7171 $ this ->assertDICDefinitionClass ($ handler , 'Monolog\Handler\FingersCrossedHandler ' );
@@ -91,7 +91,7 @@ public function testLoadWithNewAtEnd()
9191
9292 $ handler = $ container ->getDefinition ('monolog.handler.new ' );
9393 $ this ->assertDICDefinitionClass ($ handler , 'Monolog\Handler\StreamHandler ' );
94- $ this ->assertDICConstructorArguments ($ handler , array ('/tmp/monolog.log ' , \Monolog \Logger::ERROR , true , null ));
94+ $ this ->assertDICConstructorArguments ($ handler , array ('/tmp/monolog.log ' , \Monolog \Logger::ERROR , true , null , false ));
9595 }
9696
9797 public function testLoadWithNewAndPriority ()
@@ -123,7 +123,7 @@ public function testLoadWithNewAndPriority()
123123
124124 $ handler = $ container ->getDefinition ('monolog.handler.last ' );
125125 $ this ->assertDICDefinitionClass ($ handler , 'Monolog\Handler\StreamHandler ' );
126- $ this ->assertDICConstructorArguments ($ handler , array ('/tmp/last.log ' , \Monolog \Logger::ERROR , true , null ));
126+ $ this ->assertDICConstructorArguments ($ handler , array ('/tmp/last.log ' , \Monolog \Logger::ERROR , true , null , false ));
127127 }
128128
129129 public function testHandlersWithChannels ()
0 commit comments