diff options
-rw-r--r-- | tests/Monolog/Handler/SyslogUdpHandlerTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Monolog/Handler/SyslogUdpHandlerTest.php b/tests/Monolog/Handler/SyslogUdpHandlerTest.php index d58e5dc..7ee8a98 100644 --- a/tests/Monolog/Handler/SyslogUdpHandlerTest.php +++ b/tests/Monolog/Handler/SyslogUdpHandlerTest.php @@ -23,7 +23,7 @@ class SyslogUdpHandlerTest extends TestCase */ public function testWeValidateFacilities() { - $handler = new SyslogUdpHandler("ip", null, "php", "invalidFacility"); + $handler = new SyslogUdpHandler("ip", null, "invalidFacility"); } public function testWeSplitIntoLines() @@ -33,7 +33,7 @@ class SyslogUdpHandlerTest extends TestCase $host = gethostname(); $handler = $this->getMockBuilder('\Monolog\Handler\SyslogUdpHandler') - ->setConstructorArgs(array("127.0.0.1", 514, "php", "authpriv")) + ->setConstructorArgs(array("127.0.0.1", 514, "authpriv")) ->setMethods(array('getDateTime')) ->getMock(); |