From: Bryan Tong Minh Date: Mon, 11 Jul 2011 18:38:26 +0000 (+0000) Subject: Follow-up r91895: Call parent destructor as well, just to be safe. X-Git-Tag: 1.31.0-rc.0~28927 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/?a=commitdiff_plain;h=6a16bea0d24cf6647b6d5c17b4dac183e1c59459;p=lhc%2Fweb%2Fwiklou.git Follow-up r91895: Call parent destructor as well, just to be safe. --- diff --git a/tests/phpunit/includes/UserTest.php b/tests/phpunit/includes/UserTest.php index 53ef24dc11..df91aca897 100644 --- a/tests/phpunit/includes/UserTest.php +++ b/tests/phpunit/includes/UserTest.php @@ -29,6 +29,8 @@ class UserTest extends MediaWikiTestCase { ); } public function tearDown() { + parent::tearDown(); + $GLOBALS['wgGroupPermissions'] = $this->savedGroupPermissions; $GLOBALS['wgRevokePermissions'] = $this->savedRevokedPermissions; }