X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=tests%2FWallabag%2FUserBundle%2FMailer%2FAuthCodeMailerTest.php;h=21412da6e544d07d02f3b31d7f892207ff166049;hb=e1632cea0e19475ff0cc642ea05b365ce651912b;hp=f670c92582d7b0931dc6e890f17d415211f9183b;hpb=f49d9ca383c9f8a1bc426cfabf6b1cea53ea26b4;p=github%2Fwallabag%2Fwallabag.git diff --git a/tests/Wallabag/UserBundle/Mailer/AuthCodeMailerTest.php b/tests/Wallabag/UserBundle/Mailer/AuthCodeMailerTest.php index f670c925..21412da6 100644 --- a/tests/Wallabag/UserBundle/Mailer/AuthCodeMailerTest.php +++ b/tests/Wallabag/UserBundle/Mailer/AuthCodeMailerTest.php @@ -26,7 +26,6 @@ class AuthCodeMailerTest extends \PHPUnit_Framework_TestCase protected $mailer; protected $spool; protected $twig; - protected $config; protected function setUp() { @@ -37,21 +36,13 @@ class AuthCodeMailerTest extends \PHPUnit_Framework_TestCase ); $this->mailer = new \Swift_Mailer($transport); - $twigTemplate = <<twig = new \Twig_Environment(new \Twig_Loader_Array(['WallabagUserBundle:TwoFactor:email_auth_code.html.twig' => $twigTemplate])); - - $this->config = $this->getMockBuilder('Craue\ConfigBundle\Util\Config') - ->disableOriginalConstructor() - ->getMock(); - - $this->config->expects($this->any()) - ->method('get') - ->willReturn('http://0.0.0.0/support'); } public function testSendEmail() @@ -67,7 +58,8 @@ TWIG; $this->twig, 'nobody@test.io', 'wallabag test', - $this->config + 'http://0.0.0.0/support', + 'http://0.0.0.0/' ); $authCodeMailer->sendAuthCode($user);