diff options
-rwxr-xr-x | tests/it_html.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/it_html.t b/tests/it_html.t index bcd1f48..b50b3c9 100755 --- a/tests/it_html.t +++ b/tests/it_html.t @@ -183,13 +183,13 @@ is( is( U("Jet d'eau"), - 'Jet+d%27eau', + 'Jet%20d%27eau', 'U() with single quotes in URL' ); is( U('%% %1%x %1x%x1%xx%11%ff%FF'), - '%25%25+%251%25x+%251x%25x1%25xx%11%ff%FF', + '%25%25%20%251%25x%20%251x%25x1%25xx%11%ff%FF', 'U() quoting of % if not followed by 2 hex digits' ); |