X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FCoreBundle%2FTests%2FTwig%2FWallabagExtensionTest.php;h=9af8fad8f26d544f2d8687f28b782f10bd51983b;hb=eb3e3969a2d09767a1eb3042b74ce1f8736e3b4d;hp=4945e9a95fcbf3b297a8abcef93a9c39a708e175;hpb=16dabc326311f084d671be188c7941bbb3c341c9;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/CoreBundle/Tests/Twig/WallabagExtensionTest.php b/src/Wallabag/CoreBundle/Tests/Twig/WallabagExtensionTest.php index 4945e9a9..9af8fad8 100644 --- a/src/Wallabag/CoreBundle/Tests/Twig/WallabagExtensionTest.php +++ b/src/Wallabag/CoreBundle/Tests/Twig/WallabagExtensionTest.php @@ -10,8 +10,8 @@ class WallabagExtensionTest extends \PHPUnit_Framework_TestCase { $extension = new WallabagExtension(); - $this->assertEquals("lemonde.fr", $extension->removeWww('www.lemonde.fr')); - $this->assertEquals("lemonde.fr", $extension->removeWww('lemonde.fr')); - $this->assertEquals("gist.github.com", $extension->removeWww('gist.github.com')); + $this->assertEquals('lemonde.fr', $extension->removeWww('www.lemonde.fr')); + $this->assertEquals('lemonde.fr', $extension->removeWww('lemonde.fr')); + $this->assertEquals('gist.github.com', $extension->removeWww('gist.github.com')); } }