aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Wallabag/UserBundle
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2017-05-30 07:56:41 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2017-05-30 08:04:11 +0200
commitd069bff4f606be75c47a3415f2a5af13d6f04865 (patch)
tree38de497b462bed38ff0ac30d9ceba11fe38df6e1 /tests/Wallabag/UserBundle
parent5709ecb36809fb009446a11a758232bbe8f264e4 (diff)
downloadwallabag-d069bff4f606be75c47a3415f2a5af13d6f04865.tar.gz
wallabag-d069bff4f606be75c47a3415f2a5af13d6f04865.tar.zst
wallabag-d069bff4f606be75c47a3415f2a5af13d6f04865.zip
Remove unknown validation_groups
The Profile validation_groups does not exist and then for validation to be skipped (like password length)
Diffstat (limited to 'tests/Wallabag/UserBundle')
-rw-r--r--tests/Wallabag/UserBundle/Controller/ManageControllerTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Wallabag/UserBundle/Controller/ManageControllerTest.php b/tests/Wallabag/UserBundle/Controller/ManageControllerTest.php
index 44b9a030..b46256a6 100644
--- a/tests/Wallabag/UserBundle/Controller/ManageControllerTest.php
+++ b/tests/Wallabag/UserBundle/Controller/ManageControllerTest.php
@@ -30,8 +30,8 @@ class ManageControllerTest extends WallabagCoreTestCase
30 $form = $crawler->selectButton('user.form.save')->form(array( 30 $form = $crawler->selectButton('user.form.save')->form(array(
31 'new_user[username]' => 'test_user', 31 'new_user[username]' => 'test_user',
32 'new_user[email]' => 'test@test.io', 32 'new_user[email]' => 'test@test.io',
33 'new_user[plainPassword][first]' => 'test', 33 'new_user[plainPassword][first]' => 'testtest',
34 'new_user[plainPassword][second]' => 'test', 34 'new_user[plainPassword][second]' => 'testtest',
35 )); 35 ));
36 36
37 $client->submit($form); 37 $client->submit($form);