diff options
author | Jérémy Benoist <j0k3r@users.noreply.github.com> | 2019-06-24 07:30:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-24 07:30:35 +0200 |
commit | cdf458722df80cfeeafab1806da1f6b9a71409d1 (patch) | |
tree | 4df7d02bebed40cc954911647409227392e7805c /tests/Wallabag | |
parent | 8bfcb20f657e46307e08c4fda9e7cd99ba164931 (diff) | |
parent | ac5844a68e6384af447c67d9e5638795a02c9d99 (diff) | |
download | wallabag-cdf458722df80cfeeafab1806da1f6b9a71409d1.tar.gz wallabag-cdf458722df80cfeeafab1806da1f6b9a71409d1.tar.zst wallabag-cdf458722df80cfeeafab1806da1f6b9a71409d1.zip |
Merge pull request #4024 from wallabag/update-deps
Update deps
Diffstat (limited to 'tests/Wallabag')
-rw-r--r-- | tests/Wallabag/UserBundle/Mailer/AuthCodeMailerTest.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/Wallabag/UserBundle/Mailer/AuthCodeMailerTest.php b/tests/Wallabag/UserBundle/Mailer/AuthCodeMailerTest.php index 1713c10c..4f93a92c 100644 --- a/tests/Wallabag/UserBundle/Mailer/AuthCodeMailerTest.php +++ b/tests/Wallabag/UserBundle/Mailer/AuthCodeMailerTest.php | |||
@@ -3,6 +3,8 @@ | |||
3 | namespace Tests\Wallabag\UserBundle\Mailer; | 3 | namespace Tests\Wallabag\UserBundle\Mailer; |
4 | 4 | ||
5 | use PHPUnit\Framework\TestCase; | 5 | use PHPUnit\Framework\TestCase; |
6 | use Twig\Environment; | ||
7 | use Twig\Loader\ArrayLoader; | ||
6 | use Wallabag\UserBundle\Entity\User; | 8 | use Wallabag\UserBundle\Entity\User; |
7 | use Wallabag\UserBundle\Mailer\AuthCodeMailer; | 9 | use Wallabag\UserBundle\Mailer\AuthCodeMailer; |
8 | 10 | ||
@@ -27,7 +29,7 @@ class AuthCodeMailerTest extends TestCase | |||
27 | {% block body_text %}text body {{ support_url }}{% endblock %} | 29 | {% block body_text %}text body {{ support_url }}{% endblock %} |
28 | TWIG; | 30 | TWIG; |
29 | 31 | ||
30 | $this->twig = new \Twig_Environment(new \Twig_Loader_Array(['WallabagUserBundle:TwoFactor:email_auth_code.html.twig' => $twigTemplate])); | 32 | $this->twig = new Environment(new ArrayLoader(['WallabagUserBundle:TwoFactor:email_auth_code.html.twig' => $twigTemplate])); |
31 | } | 33 | } |
32 | 34 | ||
33 | public function testSendEmail() | 35 | public function testSendEmail() |