summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorUrban Müller2013-10-14 11:59:27 +0000
committerUrban Müller2013-10-14 11:59:27 +0000
commit9eeb83b98f08a786020e75e50f2a281ef41b1112 (patch)
tree41a16caf65e4261b302e70a84ca49ae25fbe43e1 /tests
parentddc2093a9a59eba375a8ad3433467e91a12d8bd5 (diff)
downloaditools-9eeb83b98f08a786020e75e50f2a281ef41b1112.tar.gz
itools-9eeb83b98f08a786020e75e50f2a281ef41b1112.tar.bz2
itools-9eeb83b98f08a786020e75e50f2a281ef41b1112.zip
use %20 instead of + for blanks in U(), werbeverlags ag needs it that way
Diffstat (limited to 'tests')
-rwxr-xr-xtests/it_html.t4
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'
);