summaryrefslogtreecommitdiff
path: root/ext/session/tests/009.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/session/tests/009.phpt')
-rw-r--r--ext/session/tests/009.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/session/tests/009.phpt b/ext/session/tests/009.phpt
index 10069c21d0..898cf76a5a 100644
--- a/ext/session/tests/009.phpt
+++ b/ext/session/tests/009.phpt
@@ -13,14 +13,14 @@ session.save_handler=files
error_reporting(E_ALL);
ob_start();
-session_id("abtest");
+session_id("test009");
### Phase 1 cleanup
session_start();
session_destroy();
### Phase 2 $_SESSION["c"] does not contain any value
-session_id("abtest");
+session_id("test009");
session_start();
var_dump($_SESSION);
$_SESSION["name"] = "foo";