diff options
author | Jérémy Benoist <j0k3r@users.noreply.github.com> | 2019-07-17 17:04:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-17 17:04:14 +0200 |
commit | 3a08e81969e9deafdb4d1aa890c03d67adcc4897 (patch) | |
tree | 226b19a667517ed9a6dd276e1f9b0afa8fac289b /tests/Wallabag/ApiBundle | |
parent | 4910361ac4c5bcf662e99d9de407d572ce1d731e (diff) | |
parent | df45126a1475ea2051a8285d89f3693c0bc61cd3 (diff) | |
download | wallabag-3a08e81969e9deafdb4d1aa890c03d67adcc4897.tar.gz wallabag-3a08e81969e9deafdb4d1aa890c03d67adcc4897.tar.zst wallabag-3a08e81969e9deafdb4d1aa890c03d67adcc4897.zip |
Merge pull request #4058 from wallabag/feature/copy-client-info
Copy client info to clipboard
Diffstat (limited to 'tests/Wallabag/ApiBundle')
-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 | ||