@@ -28,10 +28,10 @@ Assert::match('0.1', Dumper::toPhp(0.1));
2828Assert::match ("'' " , Dumper::toPhp ('' ));
2929Assert::match ("' ' " , Dumper::toPhp (' ' ));
3030Assert::match ("'0' " , Dumper::toPhp ('0 ' ));
31- Assert::match ('" \\ x00" ' , Dumper::toPhp ("\x00" ));
31+ Assert::match ('"\x00" ' , Dumper::toPhp ("\x00" ));
3232Assert::match ('"\u{FEFF}" ' , Dumper::toPhp ("\xEF\xBB\xBF" )); // BOM
3333Assert::match ("' ' " , Dumper::toPhp ("\t" ));
34- Assert::match ('" \\ xFF" ' , Dumper::toPhp ("\xFF" ));
34+ Assert::match ('"\xFF" ' , Dumper::toPhp ("\xFF" ));
3535Assert::match ('"multi\nline" ' , Dumper::toPhp ("multi \nline " ));
3636Assert::match ("'Iñtërnâtiônàlizætiøn' " , Dumper::toPhp ("I \xc3\xb1t \xc3\xabrn \xc3\xa2ti \xc3\xb4n \xc3\xa0liz \xc3\xa6ti \xc3\xb8n " ));
3737Assert::match (
@@ -48,8 +48,8 @@ Assert::match(
4848);
4949
5050Assert::match ('\'$" \\\\\'' , Dumper::toPhp ('$" \\' ));
51- Assert::match ('\'$" \\ \x00 \'' , Dumper::toPhp ('$" \ \ \x00 ' ));
52- Assert::match ('" \\ $ \\ " \ \\\ \x00" ' , Dumper::toPhp ("$ \"\\ \x00" ));
51+ Assert::match ('\'$"\ \x00 \'' , Dumper::toPhp ('$"\ \x00 ' ));
52+ Assert::match ('"\$\" \\\ \x00" ' , Dumper::toPhp ("$ \"\\ \x00" ));
5353
5454Assert::match ('/* resource stream */ ' , Dumper::toPhp (fopen (__FILE__ , 'r ' )));
5555Assert::match ('(object) /* #%a% */ [] ' , Dumper::toPhp ((object ) null ));
0 commit comments