[FormType] Adopted MoneyTypeTest::testMoneyPatternWorksForYen to CS

This commit is contained in:
Manuel Kiessling 2012-01-26 15:40:46 +01:00
parent e814d273c2
commit 6090deef90

View File

@ -34,6 +34,6 @@ class MoneyTypeTest extends LocalizedTestCase
$form = $this->factory->create('money', null, array('currency' => 'JPY'));
$view = $form->createView();
$this->assertTrue((bool)strstr($view->get('money_pattern'), '¥'));
$this->assertTrue((Boolean) strstr($view->get('money_pattern'), '¥'));
}
}