remove translation from this test

you can't compare the result of a translation to a fixed string and be
sure it's going to pass.
This commit is contained in:
AD7six 2011-03-19 18:43:44 +01:00
parent 128407fb4a
commit d66ad0bc60

View file

@ -12,7 +12,7 @@ class HelpFormatterTest extends CakeTestCase {
*/
function testWidthFormatting() {
$parser = new ConsoleOptionParser('test', false);
$parser->description(__d('cake', 'This is fifteen This is fifteen This is fifteen'))
$parser->description('This is fifteen This is fifteen This is fifteen')
->addOption('four', array('help' => 'this is help text this is help text'))
->addArgument('four', array('help' => 'this is help text this is help text'))
->addSubcommand('four', array('help' => 'this is help text this is help text'));
@ -437,4 +437,4 @@ TEXT;
$result = $formatter->xml(false);
$this->assertInstanceOf('SimpleXmlElement', $result);
}
}
}