diff options
author | Remi Collet <fedora@famillecollet.com> | 2016-10-04 09:38:46 +0200 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2016-10-04 09:38:46 +0200 |
commit | 6085ad2b4a1ae79a08855f96bf122a37c6864a91 (patch) | |
tree | 70631540fdaf166def7092549243863e57840b4f /php-twig-extensions-upstream.patch | |
parent | 03f119f01cd1326ccf97ba082ef5bb8e9a706a61 (diff) |
php-twig-extensions: upstream patch
Diffstat (limited to 'php-twig-extensions-upstream.patch')
-rw-r--r-- | php-twig-extensions-upstream.patch | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/php-twig-extensions-upstream.patch b/php-twig-extensions-upstream.patch new file mode 100644 index 0000000..4576737 --- /dev/null +++ b/php-twig-extensions-upstream.patch @@ -0,0 +1,36 @@ +From 658c6eade785eb8b0257e28dfa5165383aeffcd9 Mon Sep 17 00:00:00 2001 +From: Fabien Potencier <fabien.potencier@gmail.com> +Date: Fri, 30 Sep 2016 13:06:23 -0700 +Subject: [PATCH] fixed tests + +--- + test/Twig/Tests/Extension/DateTest.php | 16 +--------------- + 1 file changed, 1 insertion(+), 15 deletions(-) + +diff --git a/test/Twig/Tests/Extension/DateTest.php b/test/Twig/Tests/Extension/DateTest.php +index 8453d13..0080098 100644 +--- a/test/Twig/Tests/Extension/DateTest.php ++++ b/test/Twig/Tests/Extension/DateTest.php +@@ -21,21 +21,7 @@ class Twig_Tests_Extension_DateTest extends PHPUnit_Framework_TestCase + + public function setUp() + { +- $timezone = new DateTimeZone(date_default_timezone_get()); +- +- $coreExtension = $this->getMockBuilder('Twig_Extension_Core')->getMock(); +- $coreExtension +- ->expects($this->any()) +- ->method('getTimezone') +- ->will($this->returnValue($timezone)); +- +- $this->env = $this->getMockBuilder('Twig_Environment')->disableOriginalConstructor()->getMock(); +- $this->env +- ->expects($this->any()) +- ->method('getExtension') +- ->with('core') +- ->will($this->returnValue($coreExtension)) +- ; ++ $this->env = new Twig_Environment($this->getMockBuilder('Twig_LoaderInterface')->getMock()); + } + + /** |