summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2017-03-24 07:12:38 +0100
committerRemi Collet <fedora@famillecollet.com>2017-03-24 07:12:38 +0100
commitded292c685d8c5014eca6c107d6a0cce36bd56be (patch)
treebc02d08288b3a4724a96e2a40d656b85c09fc1e0
parentc630c16813ef578eca1e3e32a37d3455333988c8 (diff)
missing files
-rw-r--r--Horde_Kolab_Session-upstream.patch36
1 files changed, 36 insertions, 0 deletions
diff --git a/Horde_Kolab_Session-upstream.patch b/Horde_Kolab_Session-upstream.patch
new file mode 100644
index 0000000..06e4990
--- /dev/null
+++ b/Horde_Kolab_Session-upstream.patch
@@ -0,0 +1,36 @@
+From f0f147704f2dcce9ba1f1488e03e16c5006cde23 Mon Sep 17 00:00:00 2001
+From: Jan Schneider <jan@horde.org>
+Date: Wed, 20 Apr 2016 07:22:42 +0000
+Subject: [PATCH] This class doesn't have a constructor.
+
+---
+ .../test/Horde/Kolab/Session/Unit/Storage/SessionTest.php | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/framework/Kolab_Session/test/Horde/Kolab/Session/Unit/Storage/SessionTest.php b/framework/Kolab_Session/test/Horde/Kolab/Session/Unit/Storage/SessionTest.php
+index d600bfb..6a69ca8 100644
+--- a/framework/Kolab_Session/test/Horde/Kolab/Session/Unit/Storage/SessionTest.php
++++ b/framework/Kolab_Session/test/Horde/Kolab/Session/Unit/Storage/SessionTest.php
+@@ -40,19 +40,19 @@ public function tearDown()
+ public function testLoad()
+ {
+ $_SESSION['kolab_session'] = array('data');
+- $storage = new Horde_Kolab_Session_Storage_Session($session);
++ $storage = new Horde_Kolab_Session_Storage_Session();
+ $this->assertEquals($storage->load(), array('data'));
+ }
+
+ public function testEmpty()
+ {
+- $storage = new Horde_Kolab_Session_Storage_Session($session);
++ $storage = new Horde_Kolab_Session_Storage_Session();
+ $this->assertEquals($storage->load(), array());
+ }
+
+ public function testSave()
+ {
+- $storage = new Horde_Kolab_Session_Storage_Session($session);
++ $storage = new Horde_Kolab_Session_Storage_Session();
+ $storage->save(array('data'));
+ $this->assertEquals($_SESSION['kolab_session'], array('data'));
+ }