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