Jordi Boggiano 12 лет назад
Родитель
Сommit
d4cb2c49f4
1 измененных файлов с 3 добавлено и 3 удалено
  1. 3 3
      tests/Monolog/Handler/SyslogUdpHandlerTest.php

+ 3 - 3
tests/Monolog/Handler/SyslogUdpHandlerTest.php

@@ -16,16 +16,16 @@ class SyslogUdpHandlerTest extends \PHPUnit_Framework_TestCase
 
 
     public function testWeSplitIntoLines()
     public function testWeSplitIntoLines()
     {
     {
-        $handler = new SyslogUdpHandler("127.0.0.1", 514, "local5");
+        $handler = new SyslogUdpHandler("127.0.0.1", 514, "authpriv");
         $handler->setFormatter(new \Monolog\Formatter\ChromePHPFormatter());
         $handler->setFormatter(new \Monolog\Formatter\ChromePHPFormatter());
 
 
         $socket = $this->getMock('\Monolog\Handler\SyslogUdp\UdpSocket', array('write'), array('lol', 'lol'));
         $socket = $this->getMock('\Monolog\Handler\SyslogUdp\UdpSocket', array('write'), array('lol', 'lol'));
         $socket->expects($this->at(0))
         $socket->expects($this->at(0))
             ->method('write')
             ->method('write')
-            ->with("lol", "<172>: ");
+            ->with("lol", "<".(LOG_AUTHPRIV + LOG_WARNING).">: ");
         $socket->expects($this->at(1))
         $socket->expects($this->at(1))
             ->method('write')
             ->method('write')
-            ->with("hej", "<172>: ");
+            ->with("hej", "<".(LOG_AUTHPRIV + LOG_WARNING).">: ");
 
 
         $handler->setSocket($socket);
         $handler->setSocket($socket);