From: Jani Taskinen Date: Tue, 4 Aug 2009 02:24:47 +0000 (+0000) Subject: - fix test X-Git-Tag: php-5.4.0alpha1~191^2~2867 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3ce6066df80b1d7331c6c015752df919c955303a;p=php - fix test --- diff --git a/ext/standard/tests/general_functions/bug47859.phpt b/ext/standard/tests/general_functions/bug47859.phpt index 766ab889b2..f588dc8728 100644 --- a/ext/standard/tests/general_functions/bug47859.phpt +++ b/ext/standard/tests/general_functions/bug47859.phpt @@ -1,5 +1,5 @@ --TEST-- -Bug #47859 parse_ini_file() does not like asterisk (*) in key in the beginning +Bug #47859 (parse_ini_file() does not like asterisk (*) in key in the beginning) --FILE-- --EXPECT-- array(1) { - ["*key"]=> - string(6) "*value" + [u"*key"]=> + unicode(6) "*value" } array(1) { - ["-key"]=> - string(6) "-value" + [u"-key"]=> + unicode(6) "-value" } array(1) { - ["_key"]=> - string(6) "_value" + [u"_key"]=> + unicode(6) "_value" } array(1) { - ["key*"]=> - string(6) "value*" + [u"key*"]=> + unicode(6) "value*" } array(1) { - ["key.*.*"]=> - string(9) "value.*.*" + [u"key.*.*"]=> + unicode(9) "value.*.*" } array(1) { - ["*.*.key"]=> - string(9) "*.*.value" + [u"*.*.key"]=> + unicode(9) "*.*.value" } array(1) { - ["k*e*y"]=> - string(7) "v*a*lue" + [u"k*e*y"]=> + unicode(7) "v*a*lue" }