diff options
author | Luca Favatella <[email protected]> | 2018-04-06 10:24:29 +0100 |
---|---|---|
committer | Luca Favatella <[email protected]> | 2018-04-06 10:26:31 +0100 |
commit | b1567acdbe2c0189e39eb5f0cb696773dd7d1961 (patch) | |
tree | bafde7e4c856dd88cb00a0776d1ebb50bbc2e0c2 /lib/inets/test | |
parent | 2f7731260c4624cd5a324cb7c6ea9c124cf9ea4a (diff) | |
download | otp-b1567acdbe2c0189e39eb5f0cb696773dd7d1961.tar.gz otp-b1567acdbe2c0189e39eb5f0cb696773dd7d1961.tar.bz2 otp-b1567acdbe2c0189e39eb5f0cb696773dd7d1961.zip |
inets: Work around warning in test
... addressing PR comment
https://github.com/erlang/otp/pull/1752#pullrequestreview-107945563
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 287db81bad..1116fdb1b6 100644 --- a/lib/inets/test/httpc_SUITE.erl +++ b/lib/inets/test/httpc_SUITE.erl @@ -269,7 +269,7 @@ end_per_testcase(Case, Config) {failed, _} -> true; {skipped, _} -> false end, - if ShallCleanup -> + if ShallCleanup =:= true -> httpc:request(url(group_name(Config), "/just_close.html", Config)), ok; true -> |