Skip to content

Commit

Permalink
Merge pull request #1 from DavidBadura/fix23
Browse files Browse the repository at this point in the history
fix RecaptchaType test
  • Loading branch information
ivan1986 committed Jun 24, 2013
2 parents 6db3a6e + 29cbfe8 commit c7f1daf
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Tests/Form/Type/RecaptchaTypeTest.php
Expand Up @@ -33,11 +33,14 @@ public function testNameAndParent()

public function testDefaultOptions()
{
/*$this->assertEquals(array(
$options = new \Symfony\Component\OptionsResolver\OptionsResolver();
$this->type->setDefaultOptions($options);

$this->assertEquals(array(
'property_path' => false,
'required' => true,
'widget_options' => array(),
), $this->type->getDefaultOptions(array()));*/
), $options->resolve());
}

public function testBuildForm()
Expand Down

0 comments on commit c7f1daf

Please sign in to comment.