aboutsummaryrefslogtreecommitdiffstats
path: root/lib/inets/test
diff options
context:
space:
mode:
authorPéter Dimitrov <[email protected]>2017-09-14 17:34:47 +0200
committerPéter Dimitrov <[email protected]>2017-09-14 17:34:47 +0200
commit94333e038485030f385012c99c0e7995ae03f499 (patch)
tree334d4683baf7437ca4b0c7ccc8bac966b80aa3e8 /lib/inets/test
parentbd36da0f509ee4e357fdf51b60f3dfcecc824eb8 (diff)
parenta3c983b4ba8755e39083bdaa785e400e8b5d745c (diff)
downloadotp-94333e038485030f385012c99c0e7995ae03f499.tar.gz
otp-94333e038485030f385012c99c0e7995ae03f499.tar.bz2
otp-94333e038485030f385012c99c0e7995ae03f499.zip
Merge branch 'maint-20' into maint
* maint-20: Updated OTP version Update release notes Update version numbers inets: httpd correct server_name environment value inets: httpd - Add chunk handling of client data inets: Restore old behavior when parsing "+" inets: prepare for release
Diffstat (limited to 'lib/inets/test')
-rw-r--r--lib/inets/test/uri_SUITE.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/inets/test/uri_SUITE.erl b/lib/inets/test/uri_SUITE.erl
index 3e7799141c..f973296af6 100644
--- a/lib/inets/test/uri_SUITE.erl
+++ b/lib/inets/test/uri_SUITE.erl
@@ -277,8 +277,8 @@ encode_decode(Config) when is_list(Config) ->
?assertEqual("foo%20bar", http_uri:encode("foo bar")),
?assertEqual(<<"foo%20bar">>, http_uri:encode(<<"foo bar">>)),
- ?assertEqual("foo bar", http_uri:decode("foo+bar")),
- ?assertEqual(<<"foo bar">>, http_uri:decode(<<"foo+bar">>)),
+ ?assertEqual("foo+bar", http_uri:decode("foo+bar")),
+ ?assertEqual(<<"foo+bar">>, http_uri:decode(<<"foo+bar">>)),
?assertEqual("foo bar", http_uri:decode("foo%20bar")),
?assertEqual(<<"foo bar">>, http_uri:decode(<<"foo%20bar">>)),
?assertEqual("foo\r\n", http_uri:decode("foo%0D%0A")),