aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php
diff options
context:
space:
mode:
authorJeremy Benoist <j0k3r@users.noreply.github.com>2016-11-08 14:19:40 +0100
committerGitHub <noreply@github.com>2016-11-08 14:19:40 +0100
commit41c2178685a93999a48842ab79b08091c0345c59 (patch)
treeac502376a00f25d46c86cd27a9a18f61ea30146d /tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php
parent01ad4d6a89f52bdbf21ab2b14e3fe9291f2a9290 (diff)
parent82f9a5207888e0f1abbb5dda0e5f01c3589769b6 (diff)
downloadwallabag-41c2178685a93999a48842ab79b08091c0345c59.tar.gz
wallabag-41c2178685a93999a48842ab79b08091c0345c59.tar.zst
wallabag-41c2178685a93999a48842ab79b08091c0345c59.zip
Merge pull request #2548 from wallabag/pinboard
Add Pinboard import
Diffstat (limited to 'tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php')
-rw-r--r--tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php b/tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php
index 8d0644d1..568576a3 100644
--- a/tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php
+++ b/tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php
@@ -412,7 +412,7 @@ class ConfigControllerTest extends WallabagCoreTestCase
412 412
413 $crawler = $client->request('GET', '/config'); 413 $crawler = $client->request('GET', '/config');
414 414
415 $this->assertTrue($client->getResponse()->isSuccessful()); 415 $this->assertEquals(200, $client->getResponse()->getStatusCode());
416 416
417 $form = $crawler->filter('button[id=tagging_rule_save]')->form(); 417 $form = $crawler->filter('button[id=tagging_rule_save]')->form();
418 418
@@ -499,7 +499,7 @@ class ConfigControllerTest extends WallabagCoreTestCase
499 499
500 $crawler = $client->request('GET', '/config'); 500 $crawler = $client->request('GET', '/config');
501 501
502 $this->assertTrue($client->getResponse()->isSuccessful()); 502 $this->assertEquals(200, $client->getResponse()->getStatusCode());
503 503
504 $form = $crawler->filter('button[id=tagging_rule_save]')->form(); 504 $form = $crawler->filter('button[id=tagging_rule_save]')->form();
505 505