summaryrefslogtreecommitdiffstats
path: root/3.patch
blob: c7965da5703c4b5f848d317bc8926cadc0387bd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
From 8cb2da6626e84b7e480917ff1d7a5cea140e539d Mon Sep 17 00:00:00 2001
From: Remi Collet <remi@remirepo.net>
Date: Wed, 20 Jan 2021 09:03:39 +0100
Subject: [PATCH] re-add setUpBeforeClass

---
 test/Horde/SessionHandler/Storage/Base.php | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/test/Horde/SessionHandler/Storage/Base.php b/test/Horde/SessionHandler/Storage/Base.php
index f4eb0f3..1148cbb 100644
--- a/test/Horde/SessionHandler/Storage/Base.php
+++ b/test/Horde/SessionHandler/Storage/Base.php
@@ -68,6 +68,11 @@ protected function _gc()
                             self::$handler->getSessionIDs());
     }
 
+    public static function setUpBeforeClass()
+    {
+        self::$dir = Horde_Util::createTempDir();
+    }
+
     public static function tearDownAfterClass()
     {
         self::$handler = null;