diff options
author | Yasuo Ohgaki <yohgaki@php.net> | 2016-08-22 17:01:40 +0900 |
---|---|---|
committer | Yasuo Ohgaki <yohgaki@php.net> | 2016-08-22 17:01:40 +0900 |
commit | 7cb784fccad2578178bacec704548cc10ffdb770 (patch) | |
tree | d85b92c587d9c6d2fdb638eb82d8e48a3c5ec39b | |
parent | fd8e203fa2805578274aac288441575a209cf1ab (diff) | |
parent | 7d703a0060dcc6709304ca956c8aa5bdbfa7625c (diff) | |
download | php-git-7cb784fccad2578178bacec704548cc10ffdb770.tar.gz |
Merge branch 'PHP-7.1'
* PHP-7.1:
Adjust test so that it passes on more restrictive filesystems
-rw-r--r-- | ext/session/tests/session_id_basic2.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/session/tests/session_id_basic2.phpt b/ext/session/tests/session_id_basic2.phpt index 4421a53910..fd26c0e9ed 100644 --- a/ext/session/tests/session_id_basic2.phpt +++ b/ext/session/tests/session_id_basic2.phpt @@ -16,7 +16,7 @@ ob_start(); echo "*** Testing session_id() : basic functionality ***\n"; ini_set('session.sid_bits_per_chracter', 6); -ini_set('session.sid_length', 240); +ini_set('session.sid_length', 120); session_start(); var_dump(session_id()); session_commit(); @@ -32,7 +32,7 @@ echo "Done"; ?> --EXPECTF-- *** Testing session_id() : basic functionality *** -string(240) "%s" +string(120) "%s" string(22) "%s" Done |