aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test
diff options
context:
space:
mode:
authorZandra <[email protected]>2016-05-24 08:40:21 +0200
committerZandra Hird <[email protected]>2016-06-07 17:29:27 +0200
commit7a05305f335cf2c92bc20963cb7bac51b101ed79 (patch)
tree19e5da25633e81c52a7ef74ad063f5f29b3043ba /lib/common_test
parent06a572b6b7df775c5b9052c139b849695a0064b4 (diff)
downloadotp-7a05305f335cf2c92bc20963cb7bac51b101ed79.tar.gz
otp-7a05305f335cf2c92bc20963cb7bac51b101ed79.tar.bz2
otp-7a05305f335cf2c92bc20963cb7bac51b101ed79.zip
test_server_sup - Fix unmatched_return warnings
Diffstat (limited to 'lib/common_test')
-rw-r--r--lib/common_test/src/test_server_sup.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common_test/src/test_server_sup.erl b/lib/common_test/src/test_server_sup.erl
index 7098f72134..6922e01fcc 100644
--- a/lib/common_test/src/test_server_sup.erl
+++ b/lib/common_test/src/test_server_sup.erl
@@ -755,7 +755,7 @@ framework_call(FW,_Func,_Args,DefaultReturn)
DefaultReturn;
framework_call(Callback,Func,Args,DefaultReturn) ->
Mod = list_to_atom(Callback),
- case code:is_loaded(Mod) of
+ _ = case code:is_loaded(Mod) of
false -> code:load_file(Mod);
_ -> ok
end,