diff options
author | Philip Olson <philip@php.net> | 2011-05-25 00:02:05 +0000 |
---|---|---|
committer | Philip Olson <philip@php.net> | 2011-05-25 00:02:05 +0000 |
commit | 0183514cfb09a8912da748ee79da870f03825227 (patch) | |
tree | db06150045aa432e1b7ad3535459e5499c77f8ef | |
parent | b2780241d7354d9282a88e6bc615eb8b13e2af59 (diff) | |
download | php-git-0183514cfb09a8912da748ee79da870f03825227.tar.gz |
Fixed test, as per r311323
-rw-r--r-- | ext/standard/tests/general_functions/ini_get_all.phpt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/standard/tests/general_functions/ini_get_all.phpt b/ext/standard/tests/general_functions/ini_get_all.phpt index 7b3572c0bb..60cd38a723 100644 --- a/ext/standard/tests/general_functions/ini_get_all.phpt +++ b/ext/standard/tests/general_functions/ini_get_all.phpt @@ -34,9 +34,9 @@ array(2) { ["pcre.backtrack_limit"]=> array(3) { ["global_value"]=> - string(6) "1000000" + string(7) "1000000" ["local_value"]=> - string(6) "1000000" + string(7) "1000000" ["access"]=> int(7) } @@ -52,7 +52,7 @@ array(2) { } array(2) { ["pcre.backtrack_limit"]=> - string(6) "1000000" + string(7) "1000000" ["pcre.recursion_limit"]=> string(6) "100000" } |