diff options
Diffstat (limited to 'tests/lib/LoggerTest.php')
-rw-r--r-- | tests/lib/LoggerTest.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/lib/LoggerTest.php b/tests/lib/LoggerTest.php index 9fdbccc24dc..6b9c9af8639 100644 --- a/tests/lib/LoggerTest.php +++ b/tests/lib/LoggerTest.php @@ -9,6 +9,7 @@ namespace Test; use OC\Log; +use OCP\ILogger; class LoggerTest extends TestCase { @@ -45,7 +46,7 @@ class LoggerTest extends TestCase { $this->config->expects($this->any()) ->method('getValue') ->will(($this->returnValueMap([ - ['loglevel', \OCP\Util::WARN, \OCP\Util::WARN], + ['loglevel', ILogger::WARN, ILogger::WARN], ['log.condition', [], ['apps' => ['files']]] ]))); $logger = $this->logger; |