diff options
Diffstat (limited to 'tests')
3 files changed, 6 insertions, 6 deletions
diff --git a/tests/Wallabag/ApiBundle/Controller/DeveloperControllerTest.php b/tests/Wallabag/ApiBundle/Controller/DeveloperControllerTest.php index e9e5ee3b..35de47f9 100644 --- a/tests/Wallabag/ApiBundle/Controller/DeveloperControllerTest.php +++ b/tests/Wallabag/ApiBundle/Controller/DeveloperControllerTest.php | |||
@@ -17,7 +17,7 @@ class DeveloperControllerTest extends WallabagCoreTestCase | |||
17 | $crawler = $client->request('GET', '/developer/client/create'); | 17 | $crawler = $client->request('GET', '/developer/client/create'); |
18 | $this->assertSame(200, $client->getResponse()->getStatusCode()); | 18 | $this->assertSame(200, $client->getResponse()->getStatusCode()); |
19 | 19 | ||
20 | $form = $crawler->filter('button[type=submit]')->form(); | 20 | $form = $crawler->filter('button[id=client_save]')->form(); |
21 | 21 | ||
22 | $data = [ | 22 | $data = [ |
23 | 'client[name]' => 'My app', | 23 | 'client[name]' => 'My app', |
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 :)', |
diff --git a/tests/Wallabag/ImportBundle/Controller/PocketControllerTest.php b/tests/Wallabag/ImportBundle/Controller/PocketControllerTest.php index 17ce1a2a..01dd2451 100644 --- a/tests/Wallabag/ImportBundle/Controller/PocketControllerTest.php +++ b/tests/Wallabag/ImportBundle/Controller/PocketControllerTest.php | |||
@@ -14,7 +14,7 @@ class PocketControllerTest extends WallabagCoreTestCase | |||
14 | $crawler = $client->request('GET', '/import/pocket'); | 14 | $crawler = $client->request('GET', '/import/pocket'); |
15 | 15 | ||
16 | $this->assertSame(200, $client->getResponse()->getStatusCode()); | 16 | $this->assertSame(200, $client->getResponse()->getStatusCode()); |
17 | $this->assertSame(1, $crawler->filter('button[type=submit]')->count()); | 17 | $this->assertSame(1, $crawler->filter('button[name=action]')->count()); |
18 | } | 18 | } |
19 | 19 | ||
20 | public function testImportPocketWithRabbitEnabled() | 20 | public function testImportPocketWithRabbitEnabled() |
@@ -27,7 +27,7 @@ class PocketControllerTest extends WallabagCoreTestCase | |||
27 | $crawler = $client->request('GET', '/import/pocket'); | 27 | $crawler = $client->request('GET', '/import/pocket'); |
28 | 28 | ||
29 | $this->assertSame(200, $client->getResponse()->getStatusCode()); | 29 | $this->assertSame(200, $client->getResponse()->getStatusCode()); |
30 | $this->assertSame(1, $crawler->filter('button[type=submit]')->count()); | 30 | $this->assertSame(1, $crawler->filter('button[name=action]')->count()); |
31 | 31 | ||
32 | $client->getContainer()->get('craue_config')->set('import_with_rabbitmq', 0); | 32 | $client->getContainer()->get('craue_config')->set('import_with_rabbitmq', 0); |
33 | } | 33 | } |
@@ -43,7 +43,7 @@ class PocketControllerTest extends WallabagCoreTestCase | |||
43 | $crawler = $client->request('GET', '/import/pocket'); | 43 | $crawler = $client->request('GET', '/import/pocket'); |
44 | 44 | ||
45 | $this->assertSame(200, $client->getResponse()->getStatusCode()); | 45 | $this->assertSame(200, $client->getResponse()->getStatusCode()); |
46 | $this->assertSame(1, $crawler->filter('button[type=submit]')->count()); | 46 | $this->assertSame(1, $crawler->filter('button[name=action]')->count()); |
47 | 47 | ||
48 | $client->getContainer()->get('craue_config')->set('import_with_redis', 0); | 48 | $client->getContainer()->get('craue_config')->set('import_with_redis', 0); |
49 | } | 49 | } |