aboutsummaryrefslogtreecommitdiffstats
path: root/tests/phpunit/unit/includes/xml/XmlTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/phpunit/unit/includes/xml/XmlTest.php')
-rw-r--r--tests/phpunit/unit/includes/xml/XmlTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/phpunit/unit/includes/xml/XmlTest.php b/tests/phpunit/unit/includes/xml/XmlTest.php
index 6ec037a754c2..da2fa8e6f2db 100644
--- a/tests/phpunit/unit/includes/xml/XmlTest.php
+++ b/tests/phpunit/unit/includes/xml/XmlTest.php
@@ -32,7 +32,7 @@ use Xml;
class XmlTest extends MediaWikiUnitTestCase {
/**
- * @covers Xml::expandAttributes
+ * @covers \Xml::expandAttributes
*/
public function testExpandAttributes() {
$this->assertNull(
@@ -47,7 +47,7 @@ class XmlTest extends MediaWikiUnitTestCase {
}
/**
- * @covers Xml::escapeTagsOnly
+ * @covers \Xml::escapeTagsOnly
*/
public function testEscapeTagsOnly() {
$this->assertEquals( '&quot;&gt;&lt;', Xml::escapeTagsOnly( '"><' ),