aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/src
diff options
context:
space:
mode:
authorZandra <[email protected]>2016-05-24 14:22:28 +0200
committerZandra <[email protected]>2016-05-31 10:00:18 +0200
commit362777650d98b506028242a3a114fd587fe09c90 (patch)
tree348aa202342634167dbc896e88dd2f9cf7fbc230 /lib/common_test/src
parentc3cbbd3bdd83421f715183892296ad6843408109 (diff)
downloadotp-362777650d98b506028242a3a114fd587fe09c90.tar.gz
otp-362777650d98b506028242a3a114fd587fe09c90.tar.bz2
otp-362777650d98b506028242a3a114fd587fe09c90.zip
ct: Fix unmatched_return warnings
Diffstat (limited to 'lib/common_test/src')
-rw-r--r--lib/common_test/src/ct.erl2
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>&gt; 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.
%%%-----------------------------------------------------------------