diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2014-07-14 19:28:29 +0200 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2014-07-15 10:10:16 +0200 |
commit | 4a855be8147d0735cb0c423a15532408edaffe34 (patch) | |
tree | 0e86f55ec14e56a087693816992e33193c173d6c /tests/lib | |
parent | 05ba9b3c64b5c4a109773fe776fd6a2ebd34502a (diff) | |
download | nextcloud-server-4a855be8147d0735cb0c423a15532408edaffe34.tar.gz nextcloud-server-4a855be8147d0735cb0c423a15532408edaffe34.zip |
fix logger implementation and test
Diffstat (limited to 'tests/lib')
-rw-r--r-- | tests/lib/logger.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/logger.php b/tests/lib/logger.php index 7d5d4049b28..fcdf5b58670 100644 --- a/tests/lib/logger.php +++ b/tests/lib/logger.php @@ -19,7 +19,7 @@ class Logger extends \PHPUnit_Framework_TestCase { public function setUp() { self::$logs = array(); - $this->logger = new Log($this); + $this->logger = new Log('Test\Logger'); } public function testInterpolation() { |