diff options
author | Lukas Larsson <[email protected]> | 2010-12-14 15:12:54 +0100 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2011-02-17 17:34:49 +0100 |
commit | dd062265ad54a6a2fc705df9cfcc24dc16c4e7bf (patch) | |
tree | 45bf170f8e9f526626fcd613427f2a2124173ca3 /lib/cosEvent/test/event_channel_SUITE.erl | |
parent | c777f9b28459cb83b4fd0e07fac76432113c63f4 (diff) | |
download | otp-dd062265ad54a6a2fc705df9cfcc24dc16c4e7bf.tar.gz otp-dd062265ad54a6a2fc705df9cfcc24dc16c4e7bf.tar.bz2 otp-dd062265ad54a6a2fc705df9cfcc24dc16c4e7bf.zip |
Fix formatting for cosEvent
Diffstat (limited to 'lib/cosEvent/test/event_channel_SUITE.erl')
-rw-r--r-- | lib/cosEvent/test/event_channel_SUITE.erl | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/lib/cosEvent/test/event_channel_SUITE.erl b/lib/cosEvent/test/event_channel_SUITE.erl index 2d4a7f7a44..742a85af78 100644 --- a/lib/cosEvent/test/event_channel_SUITE.erl +++ b/lib/cosEvent/test/event_channel_SUITE.erl @@ -53,7 +53,8 @@ %%----------------------------------------------------------------- %% External exports %%----------------------------------------------------------------- --export([all/0, suite/0,groups/0,init_per_group/2,end_per_group/2, event_objects_api/1, events_api/1, events_sync_api/1, +-export([all/0, suite/0,groups/0,init_per_group/2,end_per_group/2, + event_objects_api/1, events_api/1, events_sync_api/1, cases/0, init_per_suite/1, end_per_suite/1, init_per_testcase/2, end_per_testcase/2, app_test/1]). @@ -64,21 +65,21 @@ suite() -> [{suite_callbacks,[ts_install_scb]}]. all() -> -cases(). + cases(). groups() -> []. init_per_group(_GroupName, Config) -> - Config. + Config. end_per_group(_GroupName, Config) -> - Config. + Config. + - cases() -> -[events_api, events_sync_api, event_objects_api, - app_test]. + [events_api, events_sync_api, event_objects_api, + app_test]. %%----------------------------------------------------------------- %% Init and cleanup functions. |