diff options
author | Zandra <[email protected]> | 2016-05-30 12:43:18 +0200 |
---|---|---|
committer | Zandra Hird <[email protected]> | 2016-06-07 14:35:41 +0200 |
commit | 91c6030f2bf7bf7229e8941096624e96ed648bd8 (patch) | |
tree | abfc1626b8101de2132487ae63a515a58559dfd3 /lib/common_test/src | |
parent | 11dafd504f246bd9a0f13fe7480c9de3753c108d (diff) | |
download | otp-91c6030f2bf7bf7229e8941096624e96ed648bd8.tar.gz otp-91c6030f2bf7bf7229e8941096624e96ed648bd8.tar.bz2 otp-91c6030f2bf7bf7229e8941096624e96ed648bd8.zip |
cth_conn_log: Fix unmatched_return warnings
Diffstat (limited to 'lib/common_test/src')
-rw-r--r-- | lib/common_test/src/cth_conn_log.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common_test/src/cth_conn_log.erl b/lib/common_test/src/cth_conn_log.erl index 0501c6ed1c..883da0da0a 100644 --- a/lib/common_test/src/cth_conn_log.erl +++ b/lib/common_test/src/cth_conn_log.erl @@ -170,7 +170,7 @@ post_end_per_testcase(TestCase,_Config,Return,CthState) -> end, case ct_util:update_testdata(?MODULE, Update) of deleted -> - [ct_util:delete_testdata({?MODULE,ConnMod}) || + _ = [ct_util:delete_testdata({?MODULE,ConnMod}) || {ConnMod,_} <- CthState], error_logger:delete_report_handler(ct_conn_log_h); {error,no_response} -> |