]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Fix tests
authorJeremy Benoist <jeremy.benoist@gmail.com>
Sat, 29 Apr 2017 10:24:27 +0000 (12:24 +0200)
committerNicolas LÅ“uillet <nicolas@loeuillet.org>
Mon, 1 May 2017 07:26:12 +0000 (09:26 +0200)
src/Wallabag/ApiBundle/Controller/EntryRestController.php
tests/Wallabag/ApiBundle/Controller/EntryRestControllerTest.php

index 0c98c242ada0f3aa7077978d7670537ba39535d3..ae6f0e3f5ed61611c5f4d40770da5999dc88126b 100644 (file)
@@ -239,7 +239,6 @@ class EntryRestController extends WallabagRestController
 
         // handle multiple urls
         if (!empty($urls)) {
-            $results = [];
             foreach ($urls as $key => $url) {
                 $entry = $this->get('wallabag_core.entry_repository')->findByUrlAndUserId(
                     $url,
index 64c24a2d3f0b1b8ac3e3be7d216d5ffa15c303e1..b732a8be7c8f2a92e83f02beea38479263525080 100644 (file)
@@ -774,7 +774,7 @@ class EntryRestControllerTest extends WallabagApiTestCase
     {
         $list = [
             'http://www.lemonde.fr/musiques/article/2017/04/23/loin-de-la-politique-le-printemps-de-bourges-retombe-en-enfance_5115862_1654986.html',
-            'http://0.0.0.0/entry6',
+            'http://0.0.0.0/entry1',
         ];
 
         $this->client->request('POST', '/api/entries/lists?urls='.json_encode($list));
@@ -787,13 +787,13 @@ class EntryRestControllerTest extends WallabagApiTestCase
         $this->assertEquals('http://www.lemonde.fr/musiques/article/2017/04/23/loin-de-la-politique-le-printemps-de-bourges-retombe-en-enfance_5115862_1654986.html', $content[0]['url']);
 
         $this->assertInternalType('int', $content[1]['entry']);
-        $this->assertEquals('http://0.0.0.0/entry6', $content[1]['url']);
+        $this->assertEquals('http://0.0.0.0/entry1', $content[1]['url']);
     }
 
     public function testDeleteEntriesListAction()
     {
         $list = [
-            'http://0.0.0.0/entry2',
+            'http://www.lemonde.fr/musiques/article/2017/04/23/loin-de-la-politique-le-printemps-de-bourges-retombe-en-enfance_5115862_1654986.html',
             'http://0.0.0.0/entry3',
         ];
 
@@ -804,7 +804,7 @@ class EntryRestControllerTest extends WallabagApiTestCase
         $content = json_decode($this->client->getResponse()->getContent(), true);
 
         $this->assertTrue($content[0]['entry']);
-        $this->assertEquals('http://0.0.0.0/entry2', $content[0]['url']);
+        $this->assertEquals('http://www.lemonde.fr/musiques/article/2017/04/23/loin-de-la-politique-le-printemps-de-bourges-retombe-en-enfance_5115862_1654986.html', $content[0]['url']);
 
         $this->assertFalse($content[1]['entry']);
         $this->assertEquals('http://0.0.0.0/entry3', $content[1]['url']);