diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2018-01-12 10:37:13 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2018-01-12 11:19:11 +0100 |
commit | 5614df19cf3ed2be9d56853e5441412d4d09cff4 (patch) | |
tree | dc8fc13c8b09019cf0b5ac00f05a0f4a9656e5d0 /tests/Wallabag/CoreBundle/Controller | |
parent | 91f5992423bb69d518f9f4ed17cab36a765fcd13 (diff) | |
download | wallabag-5614df19cf3ed2be9d56853e5441412d4d09cff4.tar.gz wallabag-5614df19cf3ed2be9d56853e5441412d4d09cff4.tar.zst wallabag-5614df19cf3ed2be9d56853e5441412d4d09cff4.zip |
Fixed tests
Diffstat (limited to 'tests/Wallabag/CoreBundle/Controller')
-rw-r--r-- | tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php b/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php index e424f152..12788366 100644 --- a/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php +++ b/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php | |||
@@ -476,7 +476,7 @@ class EntryControllerTest extends WallabagCoreTestCase | |||
476 | 476 | ||
477 | $this->assertSame(200, $client->getResponse()->getStatusCode()); | 477 | $this->assertSame(200, $client->getResponse()->getStatusCode()); |
478 | 478 | ||
479 | $form = $crawler->filter('button[type=submit]')->form(); | 479 | $form = $crawler->filter('button[id=entry_save]')->form(); |
480 | 480 | ||
481 | $data = [ | 481 | $data = [ |
482 | 'entry[title]' => 'My updated title hehe :)', | 482 | 'entry[title]' => 'My updated title hehe :)', |
@@ -509,7 +509,7 @@ class EntryControllerTest extends WallabagCoreTestCase | |||
509 | 509 | ||
510 | $this->assertSame(200, $client->getResponse()->getStatusCode()); | 510 | $this->assertSame(200, $client->getResponse()->getStatusCode()); |
511 | 511 | ||
512 | $form = $crawler->filter('button[type=submit]')->form(); | 512 | $form = $crawler->filter('button[id=entry_save]')->form(); |
513 | 513 | ||
514 | $data = [ | 514 | $data = [ |
515 | 'entry[title]' => 'My updated title hehe :)', | 515 | 'entry[title]' => 'My updated title hehe :)', |