diff options
author | Micael Karlberg <[email protected]> | 2011-11-22 12:16:36 +0100 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2011-11-22 12:16:36 +0100 |
commit | 3a94ee84c863798aed81869c71d4ab6b4b902ee5 (patch) | |
tree | 737d55605a629291704cc86dc4c5f55e2b9e3d95 /lib/inets/test/httpc_SUITE.erl | |
parent | 206c869501fe5e441bcb5db63827f50e5f00d8e6 (diff) | |
download | otp-3a94ee84c863798aed81869c71d4ab6b4b902ee5.tar.gz otp-3a94ee84c863798aed81869c71d4ab6b4b902ee5.tar.bz2 otp-3a94ee84c863798aed81869c71d4ab6b4b902ee5.zip |
Used wrong interface module (http instead of httpc: copy-and-paste).
Diffstat (limited to 'lib/inets/test/httpc_SUITE.erl')
-rw-r--r-- | lib/inets/test/httpc_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/inets/test/httpc_SUITE.erl b/lib/inets/test/httpc_SUITE.erl index d86e52f3d5..2b580cd95d 100644 --- a/lib/inets/test/httpc_SUITE.erl +++ b/lib/inets/test/httpc_SUITE.erl @@ -370,7 +370,7 @@ init_per_testcase(Case, Timeout, Config) -> %% This will fail for the ipv6_ - cases (but that is ok) ProxyExceptions = ["localhost", ?IPV6_LOCAL_HOST], - http:set_options([{proxy, {{?PROXY, ?PROXY_PORT}, ProxyExceptions}}]), + httpc:set_options([{proxy, {{?PROXY, ?PROXY_PORT}, ProxyExceptions}}]), inets:enable_trace(max, io, httpc), %% inets:enable_trace(max, io, all), %% snmp:set_trace([gen_tcp]), |