1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-18 02:41:24 +02:00

Minor fixes

This commit is contained in:
Jordi Boggiano
2011-04-06 13:56:01 +02:00
parent a390331a5d
commit 7fd13f6aec
3 changed files with 5 additions and 2 deletions

View File

@@ -35,7 +35,7 @@ class BufferHandlerTest extends TestCase
$handler = new BufferHandler($test);
$handler->handle($this->getRecord(Logger::WARNING));
$handler->handle($this->getRecord(Logger::DEBUG));
unset ($handler);
unset($handler);
$this->assertTrue($test->hasWarningRecords());
$this->assertTrue($test->hasDebugRecords());
}