From 42e8b3a596ea29d10828a5d37e6e82dd13162b08 Mon Sep 17 00:00:00 2001 From: Etienne Roudeix Date: Tue, 22 Oct 2013 11:24:33 +0200 Subject: [PATCH] fix tests --- core/lib/Thelia/Tests/Type/AlphaNumStringTypeTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lib/Thelia/Tests/Type/AlphaNumStringTypeTest.php b/core/lib/Thelia/Tests/Type/AlphaNumStringTypeTest.php index ae07cce6b..8f752432f 100755 --- a/core/lib/Thelia/Tests/Type/AlphaNumStringTypeTest.php +++ b/core/lib/Thelia/Tests/Type/AlphaNumStringTypeTest.php @@ -36,7 +36,7 @@ class AlphaNumStringTypeTest extends \PHPUnit_Framework_TestCase { $type = new AlphaNumStringType(); $this->assertTrue($type->isValid('azs_qs-0-9ds')); - $this->assertFalse($type->isValid('3.3')); + $this->assertTrue($type->isValid('3.3')); $this->assertFalse($type->isValid('3 3')); $this->assertFalse($type->isValid('3€3')); }