[Form] Fix double semicolon

This commit is contained in:
Daniel Perez Pinazo 2012-08-28 16:24:45 +03:00
parent 3969011f7f
commit 7fc8fc0419
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ abstract class AbstractFormTest extends \PHPUnit_Framework_TestCase
// We need an actual dispatcher to bind the deprecated
// bindRequest() method
$this->dispatcher = new EventDispatcher();;
$this->dispatcher = new EventDispatcher();
$this->factory = $this->getMock('Symfony\Component\Form\FormFactoryInterface');
$this->form = $this->createForm();
}