@@ -38,7 +38,7 @@ public function testLoadWithSeveralHandlers()
3838
3939 $ handler = $ container ->getDefinition ('monolog.handler.custom ' );
4040 $ this ->assertDICDefinitionClass ($ handler , 'Monolog\Handler\StreamHandler ' );
41- $ this ->assertDICConstructorArguments ($ handler , array ('/tmp/symfony.log ' , \Monolog \Logger::ERROR , false , 0666 ));
41+ $ this ->assertDICConstructorArguments ($ handler , array ('/tmp/symfony.log ' , \Monolog \Logger::ERROR , false , 0666 , false ));
4242
4343 $ handler = $ container ->getDefinition ('monolog.handler.main ' );
4444 $ this ->assertDICDefinitionClass ($ handler , 'Monolog\Handler\FingersCrossedHandler ' );
@@ -66,7 +66,7 @@ public function testLoadWithOverwriting()
6666
6767 $ handler = $ container ->getDefinition ('monolog.handler.custom ' );
6868 $ this ->assertDICDefinitionClass ($ handler , 'Monolog\Handler\StreamHandler ' );
69- $ this ->assertDICConstructorArguments ($ handler , array ('/tmp/symfony.log ' , \Monolog \Logger::WARNING , true , null ));
69+ $ this ->assertDICConstructorArguments ($ handler , array ('/tmp/symfony.log ' , \Monolog \Logger::WARNING , true , null , false ));
7070
7171 $ handler = $ container ->getDefinition ('monolog.handler.main ' );
7272 $ this ->assertDICDefinitionClass ($ handler , 'Monolog\Handler\FingersCrossedHandler ' );
@@ -92,7 +92,7 @@ public function testLoadWithNewAtEnd()
9292
9393 $ handler = $ container ->getDefinition ('monolog.handler.new ' );
9494 $ this ->assertDICDefinitionClass ($ handler , 'Monolog\Handler\StreamHandler ' );
95- $ this ->assertDICConstructorArguments ($ handler , array ('/tmp/monolog.log ' , \Monolog \Logger::ERROR , true , null ));
95+ $ this ->assertDICConstructorArguments ($ handler , array ('/tmp/monolog.log ' , \Monolog \Logger::ERROR , true , null , false ));
9696 }
9797
9898 public function testLoadWithNewAndPriority ()
@@ -124,7 +124,7 @@ public function testLoadWithNewAndPriority()
124124
125125 $ handler = $ container ->getDefinition ('monolog.handler.last ' );
126126 $ this ->assertDICDefinitionClass ($ handler , 'Monolog\Handler\StreamHandler ' );
127- $ this ->assertDICConstructorArguments ($ handler , array ('/tmp/last.log ' , \Monolog \Logger::ERROR , true , null ));
127+ $ this ->assertDICConstructorArguments ($ handler , array ('/tmp/last.log ' , \Monolog \Logger::ERROR , true , null , false ));
128128 }
129129
130130 public function testHandlersWithChannels ()
0 commit comments