diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2015-06-02 16:58:19 +0200 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2015-06-02 16:58:19 +0200 |
commit | 75e9d1df03831a3dc1f92b0ef713c5e2f90fa543 (patch) | |
tree | f1ef00c22a8991b504d2f9d0813c823e9c98f7b1 /src/Wallabag/CoreBundle/Tests | |
parent | 170746f99d7e0bea2eb08ccf6015fe0384d45b00 (diff) | |
download | wallabag-75e9d1df03831a3dc1f92b0ef713c5e2f90fa543.tar.gz wallabag-75e9d1df03831a3dc1f92b0ef713c5e2f90fa543.tar.zst wallabag-75e9d1df03831a3dc1f92b0ef713c5e2f90fa543.zip |
Update to Symfony 2.7
And fix some deps instead of using dev tags
Diffstat (limited to 'src/Wallabag/CoreBundle/Tests')
-rw-r--r-- | src/Wallabag/CoreBundle/Tests/Controller/ConfigControllerTest.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Wallabag/CoreBundle/Tests/Controller/ConfigControllerTest.php b/src/Wallabag/CoreBundle/Tests/Controller/ConfigControllerTest.php index a0145780..f72cba65 100644 --- a/src/Wallabag/CoreBundle/Tests/Controller/ConfigControllerTest.php +++ b/src/Wallabag/CoreBundle/Tests/Controller/ConfigControllerTest.php | |||
@@ -44,7 +44,7 @@ class ConfigControllerTest extends WallabagCoreTestCase | |||
44 | $form = $crawler->filter('button[id=config_save]')->form(); | 44 | $form = $crawler->filter('button[id=config_save]')->form(); |
45 | 45 | ||
46 | $data = array( | 46 | $data = array( |
47 | 'config[theme]' => 'baggy', | 47 | 'config[theme]' => 0, |
48 | 'config[items_per_page]' => '30', | 48 | 'config[items_per_page]' => '30', |
49 | 'config[language]' => 'fr_FR', | 49 | 'config[language]' => 'fr_FR', |
50 | ); | 50 | ); |
@@ -63,12 +63,12 @@ class ConfigControllerTest extends WallabagCoreTestCase | |||
63 | { | 63 | { |
64 | return array( | 64 | return array( |
65 | array(array( | 65 | array(array( |
66 | 'config[theme]' => 'baggy', | 66 | 'config[theme]' => 0, |
67 | 'config[items_per_page]' => '', | 67 | 'config[items_per_page]' => '', |
68 | 'config[language]' => 'fr_FR', | 68 | 'config[language]' => 'fr_FR', |
69 | )), | 69 | )), |
70 | array(array( | 70 | array(array( |
71 | 'config[theme]' => 'baggy', | 71 | 'config[theme]' => 0, |
72 | 'config[items_per_page]' => '12', | 72 | 'config[items_per_page]' => '12', |
73 | 'config[language]' => '', | 73 | 'config[language]' => '', |
74 | )), | 74 | )), |