]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Fixed unit tests 4347/head
authorNicolas Lœuillet <nicolas@loeuillet.org>
Wed, 22 Apr 2020 12:58:37 +0000 (14:58 +0200)
committerNicolas Lœuillet <nicolas@loeuillet.org>
Wed, 22 Apr 2020 12:58:37 +0000 (14:58 +0200)
tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php

index 8960dd2571cfb809abcd9da8cd1f98fd54120a93..b5655f71762a8dcefd46dab3caa9a962e592826a 100644 (file)
@@ -527,7 +527,7 @@ class EntryControllerTest extends WallabagCoreTestCase
 
         $this->assertGreaterThan(1, $title = $crawler->filter('div[id=article] h1')->extract(['_text']));
         $this->assertContains('My updated title hehe :)', $title[0]);
-        $this->assertGreaterThan(1, $stats = $crawler->filter('div[class=tools] ul[class=stats] li a[class=tool]')->extract(['_text']));
+        $this->assertGreaterThan(1, $stats = $crawler->filter('div[class="tools grey-text"] ul[class=stats] li a[class="tool grey-text"]')->extract(['_text']));
         $this->assertContains('example.io', trim($stats[1]));
     }
 
@@ -562,7 +562,7 @@ class EntryControllerTest extends WallabagCoreTestCase
         $this->assertGreaterThan(1, $title);
         $this->assertContains('My updated title hehe :)', $title[0]);
 
-        $stats = $crawler->filter('div[class=tools] ul[class=stats] li a[class=tool]')->extract(['_text']);
+        $stats = $crawler->filter('div[class="tools grey-text"] ul[class=stats] li a[class="tool grey-text"]')->extract(['_text']);
         $this->assertCount(1, $stats);
         $this->assertNotContains('example.io', trim($stats[0]));
     }