diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2007-02-24 15:35:04 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2007-02-24 15:35:04 +0000 |
commit | 44aefd1ea07eae2d1bb9893925dd4e4cc2665614 (patch) | |
tree | e2f748116d3c6c5bcec90a45b1fbe52c7dbcbf42 | |
parent | 24fa61e2020d6ab98a85759dd452d6b0c00ce15f (diff) | |
download | php-git-44aefd1ea07eae2d1bb9893925dd4e4cc2665614.tar.gz |
Fixed test to work with new version of libtidy that strips spaces
-rw-r--r-- | ext/tidy/tests/024.phpt | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/ext/tidy/tests/024.phpt b/ext/tidy/tests/024.phpt index c3d08cd6ea..f69b962aee 100644 --- a/ext/tidy/tests/024.phpt +++ b/ext/tidy/tests/024.phpt @@ -27,15 +27,13 @@ $tidy->cleanRepair(); var_dump($tidy->value); ?> ---EXPECT-- -string(117) "<html> +--EXPECTF-- +string(11%d) "<html> <head> <title></title> </head> <body> -<wps:block> -<wps:var> -<wps:value></wps:var> -</wps:block> +<wps:block>%w<wps:var> +<wps:value></wps:var>%w</wps:block> </body> </html>" |