jenkins-bot has submitted this change and it was merged. ( https://gerrit.wikimedia.org/r/371507 )
Change subject: Duplicate new table from core, patch 349457 ...................................................................... Duplicate new table from core, patch 349457 With 349457, anytime a revision is created, a corresponding record is created in the new ip_changes table. This may cause tests to fail if they don't drop the ip_changes table between individual tests. https://gerrit.wikimedia.org/r/#/c/349457/ Change-Id: I48f0b64f19f9582b40540fa1b42a39d281979625 --- M tests/phpunit/DiscussionParserTest.php 1 file changed, 2 insertions(+), 2 deletions(-) Approvals: Catrope: Looks good to me, approved jenkins-bot: Verified diff --git a/tests/phpunit/DiscussionParserTest.php b/tests/phpunit/DiscussionParserTest.php index aaf51db..07122a5 100644 --- a/tests/phpunit/DiscussionParserTest.php +++ b/tests/phpunit/DiscussionParserTest.php @@ -11,7 +11,7 @@ /** * @var array */ - protected $tablesUsed = [ 'user', 'revision', 'text', 'page' ]; + protected $tablesUsed = [ 'user', 'revision', 'ip_changes', 'text', 'page' ]; /** * Convenience users for use in these tests. @@ -819,7 +819,7 @@ 'content' => <<<TEXT == Headline 1 == -مرحبا كيف حالك +مرحبا كيف حالك === Headline 2 === انا بخير شكرا TEXT -- To view, visit https://gerrit.wikimedia.org/r/371507 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: I48f0b64f19f9582b40540fa1b42a39d281979625 Gerrit-PatchSet: 2 Gerrit-Project: mediawiki/extensions/Echo Gerrit-Branch: master Gerrit-Owner: MusikAnimal <[email protected]> Gerrit-Reviewer: Andrew Bogott <[email protected]> Gerrit-Reviewer: Catrope <[email protected]> Gerrit-Reviewer: Kaldari <[email protected]> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
