summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArtem Pervin <artem.pervin@kaspersky.com>2016-11-30 13:48:22 -0500
committerArtem Pervin <artem.pervin@kaspersky.com>2016-11-30 13:48:22 -0500
commit8a546cae8eab79ea2107476e0978247457d89acb (patch)
tree55e8d763016b35af1fbb94ebf706ab99708fdfa6
parentffc2cf98d390a35cf3f61c7c0bf5f26e3552fd2c (diff)
1394: fixed typo
-rw-r--r--test/rebar_utils_SUITE.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/rebar_utils_SUITE.erl b/test/rebar_utils_SUITE.erl
index 0d496a3..6cbac1a 100644
--- a/test/rebar_utils_SUITE.erl
+++ b/test/rebar_utils_SUITE.erl
@@ -277,11 +277,11 @@ tup_merge(_Config) ->
proxy_auth(_Config) ->
%% proxy auth with regular username/password
- rebar_utils:set_proxy_auth("Username", "Password"),
+ rebar_utils:set_proxy_auth("Username:Password"),
?assertEqual([{proxy_auth, {"Username", "Password"}}],
rebar_utils:get_proxy_auth()),
%% proxy auth with username missing and url encoded password
- rebar_utils:set_proxy_auth("", "?!abc#$"),
+ rebar_utils:set_proxy_auth(":?!abc#$"),
?assertEqual([{proxy_auth, {"", "%3F!abc%23%24"}}],
rebar_utils:get_proxy_auth()).