diff options
author | Zandra <[email protected]> | 2016-05-24 14:22:28 +0200 |
---|---|---|
committer | Zandra <[email protected]> | 2016-05-31 10:00:18 +0200 |
commit | 362777650d98b506028242a3a114fd587fe09c90 (patch) | |
tree | 348aa202342634167dbc896e88dd2f9cf7fbc230 | |
parent | c3cbbd3bdd83421f715183892296ad6843408109 (diff) | |
download | otp-362777650d98b506028242a3a114fd587fe09c90.tar.gz otp-362777650d98b506028242a3a114fd587fe09c90.tar.bz2 otp-362777650d98b506028242a3a114fd587fe09c90.zip |
ct: Fix unmatched_return warnings
-rw-r--r-- | lib/common_test/src/ct.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common_test/src/ct.erl b/lib/common_test/src/ct.erl index cae7bea406..d7ae81a5ce 100644 --- a/lib/common_test/src/ct.erl +++ b/lib/common_test/src/ct.erl @@ -282,7 +282,7 @@ step(TestDir,Suite,Case,Opts) -> %%% <c>> ct_telnet:cmd(unix_telnet, "ls .").</c><br/> %%% <c>{ok,["ls","file1 ...",...]}</c></p> start_interactive() -> - ct_util:start(interactive), + _ = ct_util:start(interactive), ok. %%%----------------------------------------------------------------- |