Merge "Removed half-assed $wgDBtransactions global."
[lhc/web/wiklou.git] / 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();
        }
 
        /**