aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Tests/Controller/ConfigControllerTest.php
diff options
context:
space:
mode:
authorJeremy <jeremy.benoist@gmail.com>2015-04-01 21:53:57 +0200
committerJeremy <jeremy.benoist@gmail.com>2015-04-01 21:59:13 +0200
commit9744e97131182f413b51a0ce671ff273fc28a0bb (patch)
tree07bfb4eecce1e08934da8994f2f13bc706b1f9fb /src/Wallabag/CoreBundle/Tests/Controller/ConfigControllerTest.php
parent769e19dc4ab1a068e8165a7b237f42a78a6d312f (diff)
downloadwallabag-9744e97131182f413b51a0ce671ff273fc28a0bb.tar.gz
wallabag-9744e97131182f413b51a0ce671ff273fc28a0bb.tar.zst
wallabag-9744e97131182f413b51a0ce671ff273fc28a0bb.zip
Fix tests
Diffstat (limited to 'src/Wallabag/CoreBundle/Tests/Controller/ConfigControllerTest.php')
-rw-r--r--src/Wallabag/CoreBundle/Tests/Controller/ConfigControllerTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Tests/Controller/ConfigControllerTest.php b/src/Wallabag/CoreBundle/Tests/Controller/ConfigControllerTest.php
index 3c158922..a0145780 100644
--- a/src/Wallabag/CoreBundle/Tests/Controller/ConfigControllerTest.php
+++ b/src/Wallabag/CoreBundle/Tests/Controller/ConfigControllerTest.php
@@ -397,7 +397,7 @@ class ConfigControllerTest extends WallabagCoreTestCase
397 ); 397 );
398 398
399 $this->assertEquals(200, $client->getResponse()->getStatusCode()); 399 $this->assertEquals(200, $client->getResponse()->getStatusCode());
400 $content = json_decode($client->getResponse()->getContent(), true);; 400 $content = json_decode($client->getResponse()->getContent(), true);
401 $this->assertArrayHasKey('token', $content); 401 $this->assertArrayHasKey('token', $content);
402 } 402 }
403 403