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
This commit is contained in:
parent
2eeda9bc7d
commit
e7939ffcd4
1 changed files with 2 additions and 2 deletions
|
|
@ -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 ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue