diff options
author | Urban Müller | 2013-10-14 11:59:27 +0000 |
---|---|---|
committer | Urban Müller | 2013-10-14 11:59:27 +0000 |
commit | 9eeb83b98f08a786020e75e50f2a281ef41b1112 (patch) | |
tree | 41a16caf65e4261b302e70a84ca49ae25fbe43e1 | |
parent | ddc2093a9a59eba375a8ad3433467e91a12d8bd5 (diff) | |
download | itools-9eeb83b98f08a786020e75e50f2a281ef41b1112.tar.gz itools-9eeb83b98f08a786020e75e50f2a281ef41b1112.tar.bz2 itools-9eeb83b98f08a786020e75e50f2a281ef41b1112.zip |
use %20 instead of + for blanks in U(), werbeverlags ag needs it that way
-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' ); |