Merge "PHP test suite for CSSMin"
authorHashar <hashar@free.fr>
Wed, 20 Jun 2012 12:28:59 +0000 (12:28 +0000)
committerGerrit Code Review <gerrit@wikimedia.org>
Wed, 20 Jun 2012 12:28:59 +0000 (12:28 +0000)
tests/phpunit/maintenance/backupPrefetchTest.php

index e92b289..6ec802c 100644 (file)
@@ -17,11 +17,13 @@ class BaseDumpTest extends MediaWikiTestCase {
        private $dump = null;
 
        protected function tearDown() {
-               parent::tearDown();
-
                if ( $this->dump !== null ) {
                        $this->dump->close();
                }
+
+               // Bug 37458, parent teardown need to be done after closing the
+               // dump or it might cause some permissions errors.
+               parent::tearDown();
        }
 
        /**