diff options
author | Zandra <[email protected]> | 2016-06-01 09:49:10 +0200 |
---|---|---|
committer | Zandra Hird <[email protected]> | 2016-06-09 14:31:28 +0200 |
commit | 02564a09a8df4cd0cd8e6e53b7e3a3107e3229d7 (patch) | |
tree | dde40b2f7773929d587af5141970153f480ec048 /lib/common_test/src/ct_util.erl | |
parent | 5bb667fad60692648a2df8de099eab38472af1ad (diff) | |
download | otp-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.erl | 3 |
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). |