From 28dcd244e810a212b3dbf8a3bb21a609c0b116ce Mon Sep 17 00:00:00 2001 From: Daniel Kraus Date: Wed, 30 Aug 2017 22:37:16 +0200 Subject: [PATCH] Call parent's addDBDataOnce. --- tests/phpunit/TestCase.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/phpunit/TestCase.php b/tests/phpunit/TestCase.php index fb4f667..faae9bd 100644 --- a/tests/phpunit/TestCase.php +++ b/tests/phpunit/TestCase.php @@ -31,6 +31,7 @@ abstract class TestCase extends \MediaWikiTestCase { } public function addDBDataOnce() { + parent::addDBDataOnce(); $this->insertPage( 'link target', 'This page serves as a link target' ); Targets::invalidate(); // force re-querying the pages table }