diff options
author | Artem Pervin <artem.pervin@kaspersky.com> | 2016-12-01 11:17:07 -0500 |
---|---|---|
committer | Artem Pervin <artem.pervin@kaspersky.com> | 2016-12-01 11:17:07 -0500 |
commit | 9ace3ba9fc1b2a1a7096e4fe62d9867f737cff1d (patch) | |
tree | cbc1d8a689a770815bd758542ad4329341e58dc6 /test | |
parent | 603683bca1ec067e7490405fd308cdabbc442702 (diff) |
1394: fixed typo
Diffstat (limited to 'test')
-rw-r--r-- | test/rebar_utils_SUITE.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/rebar_utils_SUITE.erl b/test/rebar_utils_SUITE.erl index bdbffb0..57b6474 100644 --- a/test/rebar_utils_SUITE.erl +++ b/test/rebar_utils_SUITE.erl @@ -276,13 +276,13 @@ tup_merge(_Config) -> ). proxy_auth(_Config) -> - Host = "host:", - Port = "1234", - proxy_auth(_Config, "http_proxy"), proxy_auth(_Config, "https_proxy"). proxy_auth(_Config, ProxyEnvKey) -> + Host = "host:", + Port = "1234", + %% remember current proxy specification OldProxySpec = os:getenv(ProxyEnvKey), |