diff options
author | Jordi Boggiano <j.boggiano@seld.be> | 2017-06-19 00:59:11 +0200 |
---|---|---|
committer | Jordi Boggiano <j.boggiano@seld.be> | 2017-06-19 00:59:11 +0200 |
commit | eba07cbad24c3cfb9182b2e7f473925b187b9613 (patch) | |
tree | bb239c24a370dcc7bb134b89e0a80c8c790dd81f | |
parent | 0273c31996aeb09b6487762e8ead5d25e059aced (diff) | |
download | monolog-eba07cbad24c3cfb9182b2e7f473925b187b9613.zip monolog-eba07cbad24c3cfb9182b2e7f473925b187b9613.tar.gz monolog-eba07cbad24c3cfb9182b2e7f473925b187b9613.tar.bz2 |
Avoid assertion-free test
-rw-r--r-- | tests/Monolog/Handler/RotatingFileHandlerTest.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/Monolog/Handler/RotatingFileHandlerTest.php b/tests/Monolog/Handler/RotatingFileHandlerTest.php index 9075aa2..1eb6413 100644 --- a/tests/Monolog/Handler/RotatingFileHandlerTest.php +++ b/tests/Monolog/Handler/RotatingFileHandlerTest.php @@ -145,6 +145,7 @@ class RotatingFileHandlerTest extends TestCase $this->setExpectedExceptionRegExp(InvalidArgumentException::class, '~^Invalid date format~'); } $handler->setFilenameFormat('{filename}-{date}', $dateFormat); + $this->assertTrue(true); } public function dateFormatProvider() |