aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Wallabag/ApiBundle
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2017-11-21 11:03:39 +0100
committerGitHub <noreply@github.com>2017-11-21 11:03:39 +0100
commitfb258aeef0a28ce9aaebac8f337b9970bd99e70d (patch)
treee132e2834e11c8d0dcdc001dfe08fd053ed2fe87 /tests/Wallabag/ApiBundle
parentf4f7994c40ca57c7e6f8ca0a3d298c50c4e5f813 (diff)
parent64a5a6cfc5211a42b267a623588ddb3c0b527aa4 (diff)
downloadwallabag-fb258aeef0a28ce9aaebac8f337b9970bd99e70d.tar.gz
wallabag-fb258aeef0a28ce9aaebac8f337b9970bd99e70d.tar.zst
wallabag-fb258aeef0a28ce9aaebac8f337b9970bd99e70d.zip
Merge pull request #3426 from wallabag/fix-migration-3373
Fix MySQL issue on mig from #3373
Diffstat (limited to 'tests/Wallabag/ApiBundle')
-rw-r--r--tests/Wallabag/ApiBundle/Controller/EntryRestControllerTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Wallabag/ApiBundle/Controller/EntryRestControllerTest.php b/tests/Wallabag/ApiBundle/Controller/EntryRestControllerTest.php
index 65a3ccd9..b0d4c4e1 100644
--- a/tests/Wallabag/ApiBundle/Controller/EntryRestControllerTest.php
+++ b/tests/Wallabag/ApiBundle/Controller/EntryRestControllerTest.php
@@ -983,7 +983,7 @@ class EntryRestControllerTest extends WallabagApiTestCase
983 983
984 $content = json_decode($this->client->getResponse()->getContent(), true); 984 $content = json_decode($this->client->getResponse()->getContent(), true);
985 985
986 $this->assertSame(false, $content['exists']); 986 $this->assertFalse($content['exists']);
987 } 987 }
988 988
989 public function testGetEntriesExistsWithNoUrl() 989 public function testGetEntriesExistsWithNoUrl()