X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FfileOpPerfTest.php;h=a04de08932645f4e1fdb2044cb423861616fc096;hb=efbfa0a727a196e63a2b71f0a82f09150c2be354;hp=a60942fb0ee0f6f5a80eec0786b2775846566f2c;hpb=07a791ffd1d80c6a8f2ca4dfdbc3f2002ac869fe;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/fileOpPerfTest.php b/maintenance/fileOpPerfTest.php index a60942fb0e..a04de08932 100644 --- a/maintenance/fileOpPerfTest.php +++ b/maintenance/fileOpPerfTest.php @@ -29,7 +29,7 @@ require_once __DIR__ . '/Maintenance.php'; * * @ingroup Maintenance */ -class TestFileOpPerformance extends Maintenance { +class FileOpPerfTest extends Maintenance { public function __construct() { parent::__construct(); $this->addDescription( 'Test fileop performance' ); @@ -141,5 +141,5 @@ class TestFileOpPerformance extends Maintenance { } } -$maintClass = TestFileOpPerformance::class; +$maintClass = FileOpPerfTest::class; require_once RUN_MAINTENANCE_IF_MAIN;