From 58df66b68b3db0aefb2fe04758c8d1c8d7dd2d3f Mon Sep 17 00:00:00 2001 From: Romain Neutron Date: Fri, 3 May 2013 01:42:26 +0200 Subject: [PATCH] Fix typo --- tests/Alchemy/Tests/Phrasea/Form/Constraint/NewEmailTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Alchemy/Tests/Phrasea/Form/Constraint/NewEmailTest.php b/tests/Alchemy/Tests/Phrasea/Form/Constraint/NewEmailTest.php index e721a868aa..9cbab7bbc4 100644 --- a/tests/Alchemy/Tests/Phrasea/Form/Constraint/NewEmailTest.php +++ b/tests/Alchemy/Tests/Phrasea/Form/Constraint/NewEmailTest.php @@ -21,7 +21,7 @@ class NewEmailTest extends \PhraseanetPHPUnitAbstract public function testNullIsNotAlreadyRegistered() { $constraint = new NewEmail(self::$DI['app']); - $this->assertFalse($constraint->isAlreadyRegistered('null')); + $this->assertFalse($constraint->isAlreadyRegistered(null)); } public function testBlankIsNotAlreadyRegistered()