From: Aaron Schulz Date: Tue, 13 Mar 2012 00:18:29 +0000 (+0000) Subject: r113688: updated test assertions X-Git-Tag: 1.31.0-rc.0~24281 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=c8cc2ff897c9d1f661252d21bead3b2ff07fc5a4;p=lhc%2Fweb%2Fwiklou.git r113688: updated test assertions --- diff --git a/tests/phpunit/includes/GlobalFunctions/GlobalTest.php b/tests/phpunit/includes/GlobalFunctions/GlobalTest.php index 3cb42f126d..1938e67a6f 100644 --- a/tests/phpunit/includes/GlobalFunctions/GlobalTest.php +++ b/tests/phpunit/includes/GlobalFunctions/GlobalTest.php @@ -600,16 +600,16 @@ class GlobalTest extends MediaWikiTestCase { global $wgPhpCli; return array( array( 'eval.php', array( '--help', '--test' ), array(), - "'$wgPhpCli' 'eval.php' '--help' '--test'", + "$wgPhpCli eval.php '--help' '--test'", "Called eval.php --help --test" ), array( 'eval.php', array( '--help', '--test space' ), array('php' => 'php5'), - "'php5' 'eval.php' '--help' '--test space'", + "php5 eval.php '--help' '--test space'", "Called eval.php --help --test with php option" ), array( 'eval.php', array( '--help', '--test', 'X' ), array('wrapper' => 'MWScript.php'), - "'$wgPhpCli' 'MWScript.php' 'eval.php' '--help' '--test' 'X'", + "$wgPhpCli MWScript.php eval.php '--help' '--test' 'X'", "Called eval.php --help --test with wrapper option" ), array( 'eval.php', array( '--help', '--test', 'y' ), array('php' => 'php5', 'wrapper' => 'MWScript.php'), - "'php5' 'MWScript.php' 'eval.php' '--help' '--test' 'y'", + "php5 MWScript.php eval.php '--help' '--test' 'y'", "Called eval.php --help --test with wrapper and php option" ), ); }