diff options
author | Björn-Egil Dahlberg <[email protected]> | 2016-03-11 15:38:50 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2016-03-11 15:46:44 +0100 |
commit | ea6311e952b6e6b374c76c35b4851de98838cd25 (patch) | |
tree | 5114875a87223c7eb6f3f58f27256d94277927f6 /erts | |
parent | b145292b2e6661014b426320941e6b5db764b595 (diff) | |
download | otp-ea6311e952b6e6b374c76c35b4851de98838cd25.tar.gz otp-ea6311e952b6e6b374c76c35b4851de98838cd25.tar.bz2 otp-ea6311e952b6e6b374c76c35b4851de98838cd25.zip |
Fix module_info_SUITE
Diffstat (limited to 'erts')
-rw-r--r-- | erts/emulator/test/module_info_SUITE.erl | 10 |
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() -> |