X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=tests%2Fphpunit%2Fincludes%2Fpage%2FArticleTablesTest.php;h=34b25251c1a36fd809ea782ac28d31d706800c7d;hb=44f8e75f37ceb605250c72d4af9c70c8eb8c6d46;hp=3a3b514651681f8bdc7450aa98eae0053c88ae18;hpb=d876c99123b7c07730b7a21fdff02649f75a7597;p=lhc%2Fweb%2Fwiklou.git diff --git a/tests/phpunit/includes/page/ArticleTablesTest.php b/tests/phpunit/includes/page/ArticleTablesTest.php index 3a3b514651..34b25251c1 100644 --- a/tests/phpunit/includes/page/ArticleTablesTest.php +++ b/tests/phpunit/includes/page/ArticleTablesTest.php @@ -5,7 +5,7 @@ */ class ArticleTablesTest extends MediaWikiLangTestCase { /** - * Make sure that bug 14404 doesn't strike again. We don't want + * Make sure that T16404 doesn't strike again. We don't want * templatelinks based on the user language when {{int:}} is used, only the * content language. * @@ -13,7 +13,7 @@ class ArticleTablesTest extends MediaWikiLangTestCase { * @covers Title::getLinksFrom */ public function testTemplatelinksUsesContentLanguage() { - $title = Title::newFromText( 'Bug 14404' ); + $title = Title::newFromText( 'T16404' ); $page = WikiPage::factory( $title ); $user = new User(); $user->mRights = [ 'createpage', 'edit', 'purge' ]; @@ -22,7 +22,7 @@ class ArticleTablesTest extends MediaWikiLangTestCase { $page->doEditContent( new WikitextContent( '{{:{{int:history}}}}' ), - 'Test code for bug 14404', + 'Test code for T16404', 0, false, $user @@ -35,7 +35,7 @@ class ArticleTablesTest extends MediaWikiLangTestCase { // We need an edit, a purge is not enough to regenerate the tables $page->doEditContent( new WikitextContent( '{{:{{int:history}}}}' ), - 'Test code for bug 14404', + 'Test code for T16404', EDIT_UPDATE, false, $user