summaryrefslogtreecommitdiffstats
path: root/php-twig-extensions-upstream.patch
diff options
context:
space:
mode:
Diffstat (limited to 'php-twig-extensions-upstream.patch')
-rw-r--r--php-twig-extensions-upstream.patch36
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());
+ }
+
+ /**