aboutsummaryrefslogtreecommitdiffstats
path: root/lib/megaco/test/megaco_app_test.erl
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2010-12-14 16:43:46 +0100
committerLukas Larsson <[email protected]>2011-02-17 17:34:50 +0100
commit0cf2bec9676d42053f15dadb7e6f45c579944bf6 (patch)
treee5782f43a966fe60114eca315fd04559ebf7058a /lib/megaco/test/megaco_app_test.erl
parent9037c4a828e699d5d3bba423d82db93cddf3d079 (diff)
downloadotp-0cf2bec9676d42053f15dadb7e6f45c579944bf6.tar.gz
otp-0cf2bec9676d42053f15dadb7e6f45c579944bf6.tar.bz2
otp-0cf2bec9676d42053f15dadb7e6f45c579944bf6.zip
Fix formatting and also some migration fixes for megaco
Diffstat (limited to 'lib/megaco/test/megaco_app_test.erl')
-rw-r--r--lib/megaco/test/megaco_app_test.erl22
1 files changed, 10 insertions, 12 deletions
diff --git a/lib/megaco/test/megaco_app_test.erl b/lib/megaco/test/megaco_app_test.erl
index 7d5994c9b7..0bfa388ef6 100644
--- a/lib/megaco/test/megaco_app_test.erl
+++ b/lib/megaco/test/megaco_app_test.erl
@@ -45,26 +45,24 @@ end_per_testcase(Case, Config) ->
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
all() ->
-Cases = [fields, modules, exportall, app_depend,
- undef_funcs],
- Cases.
+ [fields, modules, exportall, app_depend,
+ undef_funcs].
groups() ->
[].
init_per_group(_GroupName, Config) ->
- Config.
+ Config.
end_per_group(_GroupName, Config) ->
- Config.
-
+ Config.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-app_init(suite) -> [];
-app_init(doc) -> [];
-app_init(Config) when is_list(Config) ->
+init_per_suite(suite) -> [];
+init_per_suite(doc) -> [];
+init_per_suite(Config) when is_list(Config) ->
case is_app(megaco) of
{ok, AppFile} ->
io:format("AppFile: ~n~p~n", [AppFile]),
@@ -100,9 +98,9 @@ is_app(App) ->
end.
-app_fin(suite) -> [];
-app_fin(doc) -> [];
-app_fin(Config) when is_list(Config) ->
+end_per_suite(suite) -> [];
+end_per_suite(doc) -> [];
+end_per_suite(Config) when is_list(Config) ->
Config.