1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-07-30 18:00:17 +02:00

Replace deprecated setExpectedException methods with expectException

This commit is contained in:
Chris Forrence
2017-03-21 10:14:16 -04:00
parent 59355d5ce3
commit 85250d3c72
4 changed files with 6 additions and 6 deletions

View File

@@ -38,7 +38,7 @@ class SyslogHandlerTest extends \PHPUnit_Framework_TestCase
*/
public function testConstructInvalidFacility()
{
$this->setExpectedException('UnexpectedValueException');
$this->expectException('UnexpectedValueException');
$handler = new SyslogHandler('test', 'unknown');
}
}