1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-13 00:24:10 +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

@@ -68,7 +68,7 @@ class RegistryTest extends \PHPUnit_Framework_TestCase
Registry::addLogger(new Logger('test1'), 'log');
Registry::clear();
$this->setExpectedException('\InvalidArgumentException');
$this->expectException('\InvalidArgumentException');
Registry::getInstance('log');
}
@@ -82,7 +82,7 @@ class RegistryTest extends \PHPUnit_Framework_TestCase
Registry::addLogger($loggerToAdd);
Registry::removeLogger($remove);
$this->setExpectedException('\InvalidArgumentException');
$this->expectException('\InvalidArgumentException');
Registry::getInstance($loggerToAdd->getName());
}