diff options
author | Artem Pervin <artem.pervin@kaspersky.com> | 2016-11-30 13:52:23 -0500 |
---|---|---|
committer | Artem Pervin <artem.pervin@kaspersky.com> | 2016-11-30 13:52:23 -0500 |
commit | f8873147abe49baa4e692b6dd93be1b8db89e172 (patch) | |
tree | 03a6e450408e005c40e85b964bffc26397f499fc | |
parent | 8a546cae8eab79ea2107476e0978247457d89acb (diff) |
1394: fixed typos
-rw-r--r-- | test/rebar_utils_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/rebar_utils_SUITE.erl b/test/rebar_utils_SUITE.erl index 6cbac1a..ad37e00 100644 --- a/test/rebar_utils_SUITE.erl +++ b/test/rebar_utils_SUITE.erl @@ -281,8 +281,8 @@ proxy_auth(_Config) -> ?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#$"), - ?assertEqual([{proxy_auth, {"", "%3F!abc%23%24"}}], + rebar_utils:set_proxy_auth(":%3F!abc%23%24"), + ?assertEqual([{proxy_auth, {"", "?!abc#$"}}], rebar_utils:get_proxy_auth()). |