From: Timo Tijhof Date: Tue, 23 Feb 2016 03:18:31 +0000 (+0000) Subject: Add missing namespace to @covers comment in LegacyLoggerTest X-Git-Tag: 1.31.0-rc.0~7866 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_ecrire%28%22lang_raccourcis%22%2C%22module=%24nom_module%22%29%20.%20%22?a=commitdiff_plain;h=e7939ffcd476cc8b6f0ffd8c8084c7baefdfdc9c;p=lhc%2Fweb%2Fwiklou.git Add missing namespace to @covers comment in LegacyLoggerTest > Trying to @cover or @use not existing method "LegacyLogger::interpolate" Makes code coverage run fail at the moment. Change-Id: I8417b5c2f1fc116583758c7507770c796127bb67 --- diff --git a/tests/phpunit/includes/debug/logger/LegacyLoggerTest.php b/tests/phpunit/includes/debug/logger/LegacyLoggerTest.php index faad97be98..37a28c36ca 100644 --- a/tests/phpunit/includes/debug/logger/LegacyLoggerTest.php +++ b/tests/phpunit/includes/debug/logger/LegacyLoggerTest.php @@ -26,7 +26,7 @@ use Psr\Log\LogLevel; class LegacyLoggerTest extends MediaWikiTestCase { /** - * @covers LegacyLogger::interpolate + * @covers MediaWiki\Logger\LegacyLogger::interpolate * @dataProvider provideInterpolate */ public function testInterpolate( $message, $context, $expect ) { @@ -125,7 +125,7 @@ class LegacyLoggerTest extends MediaWikiTestCase { } /** - * @covers LegacyLogger::shouldEmit + * @covers MediaWiki\Logger\LegacyLogger::shouldEmit * @dataProvider provideShouldEmit */ public function testShouldEmit( $level, $config, $expected ) {