summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/session/tests/bug32330.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/session/tests/bug32330.phpt b/ext/session/tests/bug32330.phpt
index c0d3370e01..98d442ae5c 100644
--- a/ext/session/tests/bug32330.phpt
+++ b/ext/session/tests/bug32330.phpt
@@ -6,7 +6,7 @@ Bug #32330 (session_destroy, "Failed to initialize storage module", custom sessi
session.use_trans_sid=0
session.use_cookies=1
session.name=sid
-session.save_path=/
+session.save_path=/tmp
session.gc_probability=1
session.gc_divisor=1
--FILE--
@@ -68,17 +68,17 @@ $_SESSION['E'] = 'F';
?>
--EXPECTF--
-open: path = /, name = sid
+open: path = /tmp, name = sid
read: id = %s
gc: maxlifetime = %d
write: id = %s, data = A|s:1:"B";
close
-open: path = /, name = sid
+open: path = /tmp, name = sid
read: id = %s
gc: maxlifetime = %d
destroy: id = %s
close
-open: path = /, name = sid
+open: path = /tmp, name = sid
read: id = %s
gc: maxlifetime = %d
write: id = %s, data = E|s:1:"F";