diff options
author | Lukas Larsson <[email protected]> | 2010-12-14 17:47:20 +0100 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2011-02-17 17:36:38 +0100 |
commit | ae493322caac4bb5f118f39c8d1c05203c9f6170 (patch) | |
tree | 2492a28aec2e4b7ffff27aa01209671a795cbecb /lib/stdlib/test/edlin_expand_SUITE.erl | |
parent | 1578d8084f6a4b6c61057425ed1baaf744f274b7 (diff) | |
download | otp-ae493322caac4bb5f118f39c8d1c05203c9f6170.tar.gz otp-ae493322caac4bb5f118f39c8d1c05203c9f6170.tar.bz2 otp-ae493322caac4bb5f118f39c8d1c05203c9f6170.zip |
Fix formatting for stdlib
Diffstat (limited to 'lib/stdlib/test/edlin_expand_SUITE.erl')
-rw-r--r-- | lib/stdlib/test/edlin_expand_SUITE.erl | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/lib/stdlib/test/edlin_expand_SUITE.erl b/lib/stdlib/test/edlin_expand_SUITE.erl index 84d3497020..1332a261ec 100644 --- a/lib/stdlib/test/edlin_expand_SUITE.erl +++ b/lib/stdlib/test/edlin_expand_SUITE.erl @@ -17,7 +17,8 @@ %% %CopyrightEnd% %% -module(edlin_expand_SUITE). --export([all/0, suite/0,groups/0,init_per_suite/1, end_per_suite/1, init_per_group/2,end_per_group/2]). +-export([all/0, suite/0,groups/0,init_per_suite/1, end_per_suite/1, + init_per_group/2,end_per_group/2]). -export([normal/1, quoted_fun/1, quoted_module/1, quoted_both/1]). @@ -39,22 +40,26 @@ end_per_testcase(_Case, Config) -> suite() -> [{suite_callbacks,[ts_install_scb]}]. all() -> -[normal, quoted_fun, quoted_module, quoted_both]. + [normal, quoted_fun, quoted_module, quoted_both]. groups() -> []. init_per_suite(Config) -> + true = code:delete(expand_test), + true = code:delete(expand_test1), + true = code:delete('ExpandTestCaps'), + true = code:delete('ExpandTestCaps1'), Config. end_per_suite(_Config) -> ok. init_per_group(_GroupName, Config) -> - Config. + Config. end_per_group(_GroupName, Config) -> - Config. + Config. normal(doc) -> |