diff options
author | addshore <addshorewiki@gmail.com> | 2014-05-05 17:10:07 +0100 |
---|---|---|
committer | Ori.livneh <ori@wikimedia.org> | 2014-08-02 21:35:34 +0000 |
commit | 892a992ab870f6b130bdaf75b0d274ab805f8d70 (patch) | |
tree | 09f7c8a56331ce48ed0252091c276d70576246a3 /tests/phpunit/includes/jobqueue/JobQueueTest.php | |
parent | c454a77916725a78401943b35d97eff29db89aad (diff) | |
download | mediawikicore-892a992ab870f6b130bdaf75b0d274ab805f8d70.tar.gz mediawikicore-892a992ab870f6b130bdaf75b0d274ab805f8d70.zip |
Remove MediaWikiPHPUnitCommand
All functionality has been moved to other places
Change-Id: I6b6b0ef846bc63108c4dff9e17098432fd9d1697
Diffstat (limited to 'tests/phpunit/includes/jobqueue/JobQueueTest.php')
-rw-r--r-- | tests/phpunit/includes/jobqueue/JobQueueTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/phpunit/includes/jobqueue/JobQueueTest.php b/tests/phpunit/includes/jobqueue/JobQueueTest.php index 70374dc651f5..69e400682204 100644 --- a/tests/phpunit/includes/jobqueue/JobQueueTest.php +++ b/tests/phpunit/includes/jobqueue/JobQueueTest.php @@ -21,8 +21,8 @@ class JobQueueTest extends MediaWikiTestCase { $this->setMwGlobals( 'wgMemc', new HashBagOStuff() ); - if ( $this->getCliArg( 'use-jobqueue=' ) ) { - $name = $this->getCliArg( 'use-jobqueue=' ); + if ( $this->getCliArg( 'use-jobqueue' ) ) { + $name = $this->getCliArg( 'use-jobqueue' ); if ( !isset( $wgJobTypeConf[$name] ) ) { throw new MWException( "No \$wgJobTypeConf entry for '$name'." ); } |