Remove last profiling data from unit tests
[lhc/web/wiklou.git] / tests / phpunit / MediaWikiTestCase.php
index 0a0f480..2b46fc3 100644 (file)
@@ -129,14 +129,10 @@ abstract class MediaWikiTestCase extends PHPUnit_Framework_TestCase {
                        $needsResetDB = true;
                }
 
-               wfProfileIn( $logName );
                parent::run( $result );
-               wfProfileOut( $logName );
 
                if ( $needsResetDB ) {
-                       wfProfileIn( $logName . ' (reset-db)' );
                        $this->resetDB();
-                       wfProfileOut( $logName . ' (reset-db)' );
                }
        }