diff options
author | Björn-Egil Dahlberg <[email protected]> | 2016-12-20 17:02:02 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2016-12-20 17:02:02 +0100 |
commit | 9ced99d838310cbd79af561065fa320db8cf523b (patch) | |
tree | 89c87bb5e17babf799f94cd33a0f3a568fb0e111 /lib/stdlib/test/gen_event_SUITE.erl | |
parent | a9f8e5ecba943cdd22528984bbfadd1a4b89e17a (diff) | |
download | otp-9ced99d838310cbd79af561065fa320db8cf523b.tar.gz otp-9ced99d838310cbd79af561065fa320db8cf523b.tar.bz2 otp-9ced99d838310cbd79af561065fa320db8cf523b.zip |
stdlib: Remove whitespace error in gen_event_SUITE
Diffstat (limited to 'lib/stdlib/test/gen_event_SUITE.erl')
-rw-r--r-- | lib/stdlib/test/gen_event_SUITE.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/stdlib/test/gen_event_SUITE.erl b/lib/stdlib/test/gen_event_SUITE.erl index 4415c2d09d..a36a5b5479 100644 --- a/lib/stdlib/test/gen_event_SUITE.erl +++ b/lib/stdlib/test/gen_event_SUITE.erl @@ -21,7 +21,7 @@ -include_lib("common_test/include/ct.hrl"). --export([all/0, suite/0,groups/0,init_per_suite/1, end_per_suite/1, +-export([all/0, suite/0,groups/0,init_per_suite/1, end_per_suite/1, init_per_group/2,end_per_group/2]). -export([start/1, add_handler/1, add_sup_handler/1, delete_handler/1, swap_handler/1, swap_sup_handler/1, @@ -31,12 +31,12 @@ suite() -> [{ct_hooks,[ts_install_cth]}]. -all() -> +all() -> [start, {group, test_all}, hibernate, call_format_status, call_format_status_anon, error_format_status, get_state, replace_state]. -groups() -> +groups() -> [{test_all, [], [add_handler, add_sup_handler, delete_handler, swap_handler, swap_sup_handler, notify, sync_notify, |