summaryrefslogtreecommitdiffstats
path: root/Tests
diff options
context:
space:
mode:
authorHugo Hamon <hugo.hamon@sensio.com>2013-02-04 13:20:14 +0100
committerHugo Hamon <hugo.hamon@sensio.com>2013-02-04 13:20:14 +0100
commitc4fb5a816e5d46b52908a0ff1b84b4ce9d147cba (patch)
tree854f63714f1c4d59db5106af837d75a4700ab5f1 /Tests
parente642286ad42e113e0ed8e3343ad852121d2f467a (diff)
downloadsymfony-security-c4fb5a816e5d46b52908a0ff1b84b4ce9d147cba.zip
symfony-security-c4fb5a816e5d46b52908a0ff1b84b4ce9d147cba.tar.gz
symfony-security-c4fb5a816e5d46b52908a0ff1b84b4ce9d147cba.tar.bz2
[Security] renamed Constraint namespace to Constraints for validator classes in order to be consistent with the whole current validator API.
Diffstat (limited to 'Tests')
-rw-r--r--Tests/Core/Validator/Constraints/UserPasswordValidatorTest.php (renamed from Tests/Core/Validator/Constraint/UserPasswordValidatorTest.php)6
1 files changed, 3 insertions, 3 deletions
diff --git a/Tests/Core/Validator/Constraint/UserPasswordValidatorTest.php b/Tests/Core/Validator/Constraints/UserPasswordValidatorTest.php
index e3bcbf4..d9395ba 100644
--- a/Tests/Core/Validator/Constraint/UserPasswordValidatorTest.php
+++ b/Tests/Core/Validator/Constraints/UserPasswordValidatorTest.php
@@ -9,10 +9,10 @@
* file that was distributed with this source code.
*/
-namespace Symfony\Component\Security\Tests\Core\Validator\Constraint;
+namespace Symfony\Component\Security\Tests\Core\Validator\Constraints;
-use Symfony\Component\Security\Core\Validator\Constraint\UserPassword;
-use Symfony\Component\Security\Core\Validator\Constraint\UserPasswordValidator;
+use Symfony\Component\Security\Core\Validator\Constraints\UserPassword;
+use Symfony\Component\Security\Core\Validator\Constraints\UserPasswordValidator;
class UserPasswordValidatorTest extends \PHPUnit_Framework_TestCase
{