aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjörn-Egil Dahlberg <[email protected]>2016-03-11 15:38:50 +0100
committerBjörn-Egil Dahlberg <[email protected]>2016-03-11 15:46:44 +0100
commitea6311e952b6e6b374c76c35b4851de98838cd25 (patch)
tree5114875a87223c7eb6f3f58f27256d94277927f6
parentb145292b2e6661014b426320941e6b5db764b595 (diff)
downloadotp-ea6311e952b6e6b374c76c35b4851de98838cd25.tar.gz
otp-ea6311e952b6e6b374c76c35b4851de98838cd25.tar.bz2
otp-ea6311e952b6e6b374c76c35b4851de98838cd25.zip
Fix module_info_SUITE
-rw-r--r--erts/emulator/test/module_info_SUITE.erl10
1 files changed, 4 insertions, 6 deletions
diff --git a/erts/emulator/test/module_info_SUITE.erl b/erts/emulator/test/module_info_SUITE.erl
index f3738c4023..f8208c5866 100644
--- a/erts/emulator/test/module_info_SUITE.erl
+++ b/erts/emulator/test/module_info_SUITE.erl
@@ -43,12 +43,10 @@ modules() ->
%% Should return all functions exported from this module. (local)
all_exported() ->
All = add_arity(modules()),
- lists:sort([{all,0},{suite,0},{groups,0},
- {init_per_suite,1},{end_per_suite,1},
- {init_per_group,2},{end_per_group,2},
- {init_per_testcase,2},{end_per_testcase,2},
- {module_info,0},{module_info,1},{native_proj,1},
- {native_filter,1}|All]).
+ lists:sort([{all,0},{suite,0},
+ {module_info,0},{module_info,1},
+ {native_proj,1},
+ {native_filter,1}|All]).
%% Should return all functions in this module. (local)
all_functions() ->