diff options
Diffstat (limited to 'tests/Wallabag')
-rw-r--r-- | tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php b/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php index 8960dd25..b5655f71 100644 --- a/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php +++ b/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php | |||
@@ -527,7 +527,7 @@ class EntryControllerTest extends WallabagCoreTestCase | |||
527 | 527 | ||
528 | $this->assertGreaterThan(1, $title = $crawler->filter('div[id=article] h1')->extract(['_text'])); | 528 | $this->assertGreaterThan(1, $title = $crawler->filter('div[id=article] h1')->extract(['_text'])); |
529 | $this->assertContains('My updated title hehe :)', $title[0]); | 529 | $this->assertContains('My updated title hehe :)', $title[0]); |
530 | $this->assertGreaterThan(1, $stats = $crawler->filter('div[class=tools] ul[class=stats] li a[class=tool]')->extract(['_text'])); | 530 | $this->assertGreaterThan(1, $stats = $crawler->filter('div[class="tools grey-text"] ul[class=stats] li a[class="tool grey-text"]')->extract(['_text'])); |
531 | $this->assertContains('example.io', trim($stats[1])); | 531 | $this->assertContains('example.io', trim($stats[1])); |
532 | } | 532 | } |
533 | 533 | ||
@@ -562,7 +562,7 @@ class EntryControllerTest extends WallabagCoreTestCase | |||
562 | $this->assertGreaterThan(1, $title); | 562 | $this->assertGreaterThan(1, $title); |
563 | $this->assertContains('My updated title hehe :)', $title[0]); | 563 | $this->assertContains('My updated title hehe :)', $title[0]); |
564 | 564 | ||
565 | $stats = $crawler->filter('div[class=tools] ul[class=stats] li a[class=tool]')->extract(['_text']); | 565 | $stats = $crawler->filter('div[class="tools grey-text"] ul[class=stats] li a[class="tool grey-text"]')->extract(['_text']); |
566 | $this->assertCount(1, $stats); | 566 | $this->assertCount(1, $stats); |
567 | $this->assertNotContains('example.io', trim($stats[0])); | 567 | $this->assertNotContains('example.io', trim($stats[0])); |
568 | } | 568 | } |