diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-09-28 10:02:31 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-09-28 10:04:36 +0200 |
commit | 084fb0d303efc6edd0bfbf43d96b6cbe48acb2b8 (patch) | |
tree | 4fa9a2f8dba11f8478884823a382e1017410999a /tests/Wallabag/CoreBundle/Controller | |
parent | 92fa168344c51cd1c5835678e649b05cb7a2d030 (diff) | |
download | wallabag-084fb0d303efc6edd0bfbf43d96b6cbe48acb2b8.tar.gz wallabag-084fb0d303efc6edd0bfbf43d96b6cbe48acb2b8.tar.zst wallabag-084fb0d303efc6edd0bfbf43d96b6cbe48acb2b8.zip |
Some fixes about upgrade from 2.0.x -> 2.1.0
Diffstat (limited to 'tests/Wallabag/CoreBundle/Controller')
-rw-r--r-- | tests/Wallabag/CoreBundle/Controller/TagControllerTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Wallabag/CoreBundle/Controller/TagControllerTest.php b/tests/Wallabag/CoreBundle/Controller/TagControllerTest.php index 71652760..2c32393f 100644 --- a/tests/Wallabag/CoreBundle/Controller/TagControllerTest.php +++ b/tests/Wallabag/CoreBundle/Controller/TagControllerTest.php | |||
@@ -47,7 +47,7 @@ class TagControllerTest extends WallabagCoreTestCase | |||
47 | 47 | ||
48 | $this->assertEquals(1, count($entry->getTags())); | 48 | $this->assertEquals(1, count($entry->getTags())); |
49 | 49 | ||
50 | # tag already exists and already assigned | 50 | // tag already exists and already assigned |
51 | $client->submit($form, $data); | 51 | $client->submit($form, $data); |
52 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | 52 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); |
53 | 53 | ||
@@ -58,7 +58,7 @@ class TagControllerTest extends WallabagCoreTestCase | |||
58 | 58 | ||
59 | $this->assertEquals(1, count($newEntry->getTags())); | 59 | $this->assertEquals(1, count($newEntry->getTags())); |
60 | 60 | ||
61 | # tag already exists but still not assigned to this entry | 61 | // tag already exists but still not assigned to this entry |
62 | $data = [ | 62 | $data = [ |
63 | 'tag[label]' => 'foo', | 63 | 'tag[label]' => 'foo', |
64 | ]; | 64 | ]; |