aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Tests/WallabagCoreTestCase.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Wallabag/CoreBundle/Tests/WallabagCoreTestCase.php')
-rw-r--r--src/Wallabag/CoreBundle/Tests/WallabagCoreTestCase.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Wallabag/CoreBundle/Tests/WallabagCoreTestCase.php b/src/Wallabag/CoreBundle/Tests/WallabagCoreTestCase.php
index c4905478..05450c0b 100644
--- a/src/Wallabag/CoreBundle/Tests/WallabagCoreTestCase.php
+++ b/src/Wallabag/CoreBundle/Tests/WallabagCoreTestCase.php
@@ -24,10 +24,10 @@ abstract class WallabagCoreTestCase extends WebTestCase
24 { 24 {
25 $crawler = $this->client->request('GET', '/login'); 25 $crawler = $this->client->request('GET', '/login');
26 $form = $crawler->filter('button[type=submit]')->form(); 26 $form = $crawler->filter('button[type=submit]')->form();
27 $data = array( 27 $data = [
28 '_username' => $username, 28 '_username' => $username,
29 '_password' => 'mypassword', 29 '_password' => 'mypassword',
30 ); 30 ];
31 31
32 $this->client->submit($form, $data); 32 $this->client->submit($form, $data);
33 } 33 }