]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/CoreBundle/Tests/WallabagCoreTestCase.php
Skipping PostgreSQL test that drop database
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Tests / WallabagCoreTestCase.php
index 756525a97f34b9775420cd152cd59b90d94746a0..ce3cabe8d36af3f82d8c782a7d7855c1eb0245c1 100644 (file)
@@ -15,13 +15,15 @@ abstract class WallabagCoreTestCase extends WebTestCase
 
     public function setUp()
     {
+        parent::setUp();
+
         $this->client = static::createClient();
     }
 
     public function logInAs($username)
     {
         $crawler = $this->client->request('GET', '/login');
-        $form = $crawler->filter('input[type=submit]')->form();
+        $form = $crawler->filter('button[type=submit]')->form();
         $data = array(
             '_username' => $username,
             '_password' => 'mypassword',