diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2019-07-09 14:02:58 +0200 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2019-07-09 14:02:58 +0200 |
commit | 2f62f3abfe8c8187a8bc90294ed7c3be9bc71525 (patch) | |
tree | ec834a306c608f4b18e5e6acd0efd17363ebd6ac /tests/Wallabag | |
parent | 66fa0c26ab74467645e2cc63a4f48ef82e3f5748 (diff) | |
download | wallabag-2f62f3abfe8c8187a8bc90294ed7c3be9bc71525.tar.gz wallabag-2f62f3abfe8c8187a8bc90294ed7c3be9bc71525.tar.zst wallabag-2f62f3abfe8c8187a8bc90294ed7c3be9bc71525.zip |
Fix tests
Diffstat (limited to 'tests/Wallabag')
-rw-r--r-- | tests/Wallabag/ApiBundle/Controller/DeveloperControllerTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Wallabag/ApiBundle/Controller/DeveloperControllerTest.php b/tests/Wallabag/ApiBundle/Controller/DeveloperControllerTest.php index 5586c70d..e3d69290 100644 --- a/tests/Wallabag/ApiBundle/Controller/DeveloperControllerTest.php +++ b/tests/Wallabag/ApiBundle/Controller/DeveloperControllerTest.php | |||
@@ -30,7 +30,7 @@ class DeveloperControllerTest extends WallabagCoreTestCase | |||
30 | $newNbClients = $em->getRepository('WallabagApiBundle:Client')->findAll(); | 30 | $newNbClients = $em->getRepository('WallabagApiBundle:Client')->findAll(); |
31 | $this->assertGreaterThan(\count($nbClients), \count($newNbClients)); | 31 | $this->assertGreaterThan(\count($nbClients), \count($newNbClients)); |
32 | 32 | ||
33 | $this->assertGreaterThan(1, $alert = $crawler->filter('.settings ul li strong')->extract(['_text'])); | 33 | $this->assertGreaterThan(1, $alert = $crawler->filter('.settings table strong')->extract(['_text'])); |
34 | $this->assertContains('My app', $alert[0]); | 34 | $this->assertContains('My app', $alert[0]); |
35 | } | 35 | } |
36 | 36 | ||