aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/src/ct_util.erl
diff options
context:
space:
mode:
authorZandra <[email protected]>2016-06-01 09:49:10 +0200
committerZandra Hird <[email protected]>2016-06-09 14:31:28 +0200
commit02564a09a8df4cd0cd8e6e53b7e3a3107e3229d7 (patch)
treedde40b2f7773929d587af5141970153f480ec048 /lib/common_test/src/ct_util.erl
parent5bb667fad60692648a2df8de099eab38472af1ad (diff)
downloadotp-02564a09a8df4cd0cd8e6e53b7e3a3107e3229d7.tar.gz
otp-02564a09a8df4cd0cd8e6e53b7e3a3107e3229d7.tar.bz2
otp-02564a09a8df4cd0cd8e6e53b7e3a3107e3229d7.zip
ct logs: Fix unmatched_return warnings
Diffstat (limited to 'lib/common_test/src/ct_util.erl')
-rw-r--r--lib/common_test/src/ct_util.erl3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/common_test/src/ct_util.erl b/lib/common_test/src/ct_util.erl
index 833f784bc1..82a8743cf0 100644
--- a/lib/common_test/src/ct_util.erl
+++ b/lib/common_test/src/ct_util.erl
@@ -1040,7 +1040,8 @@ return({To,Ref},Result) ->
ok.
cast(Msg) ->
- ct_util_server ! {Msg, {ct_util_server, make_ref()}}.
+ ct_util_server ! {Msg, {ct_util_server, make_ref()}},
+ ok.
seconds(T) ->
test_server:seconds(T).