diff options
author | Luca Favatella <[email protected]> | 2018-03-16 13:01:43 +0000 |
---|---|---|
committer | Luca Favatella <[email protected]> | 2018-03-23 17:00:43 +0000 |
commit | cef626165bc62edcc78c3be0c2cb107ae961b805 (patch) | |
tree | f8935a26fcb463ca83c415a422ff5366417efb30 /lib/inets/test | |
parent | c061eb5f8b6b0fdf3468945d8f6eea818ac4f478 (diff) | |
download | otp-cef626165bc62edcc78c3be0c2cb107ae961b805.tar.gz otp-cef626165bc62edcc78c3be0c2cb107ae961b805.tar.bz2 otp-cef626165bc62edcc78c3be0c2cb107ae961b805.zip |
inets: Fix profile used in persistent_connection tests in httpc_SUITE
It looks like a typo, though I did not experience impact of this on
tests.
Diffstat (limited to 'lib/inets/test')
-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 38705372c9..c8eaa4b3df 100644 --- a/lib/inets/test/httpc_SUITE.erl +++ b/lib/inets/test/httpc_SUITE.erl @@ -233,7 +233,7 @@ init_per_testcase(pipeline, Config) -> init_per_testcase(persistent_connection, Config) -> inets:start(httpc, [{profile, persistent}]), httpc:set_options([{keep_alive_timeout, 50000}, - {max_keep_alive_length, 3}], persistent_connection), + {max_keep_alive_length, 3}], persistent), Config; init_per_testcase(wait_for_whole_response, Config) -> |