summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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()).