aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/test/erl_expand_records_SUITE.erl
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2010-12-14 17:47:20 +0100
committerLukas Larsson <[email protected]>2011-02-17 17:36:38 +0100
commitae493322caac4bb5f118f39c8d1c05203c9f6170 (patch)
tree2492a28aec2e4b7ffff27aa01209671a795cbecb /lib/stdlib/test/erl_expand_records_SUITE.erl
parent1578d8084f6a4b6c61057425ed1baaf744f274b7 (diff)
downloadotp-ae493322caac4bb5f118f39c8d1c05203c9f6170.tar.gz
otp-ae493322caac4bb5f118f39c8d1c05203c9f6170.tar.bz2
otp-ae493322caac4bb5f118f39c8d1c05203c9f6170.zip
Fix formatting for stdlib
Diffstat (limited to 'lib/stdlib/test/erl_expand_records_SUITE.erl')
-rw-r--r--lib/stdlib/test/erl_expand_records_SUITE.erl16
1 files changed, 9 insertions, 7 deletions
diff --git a/lib/stdlib/test/erl_expand_records_SUITE.erl b/lib/stdlib/test/erl_expand_records_SUITE.erl
index 3410dd52af..bbd4d916cb 100644
--- a/lib/stdlib/test/erl_expand_records_SUITE.erl
+++ b/lib/stdlib/test/erl_expand_records_SUITE.erl
@@ -31,11 +31,13 @@
-define(privdir, ?config(priv_dir, Config)).
-endif.
--export([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]).
+-export([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]).
-export([abstract_module/1, attributes/1, expr/1, guard/1,
init/1, pattern/1, strict/1, update/1,
- otp_5915/1, otp_7931/1, otp_5990/1,
+ otp_5915/1, otp_7931/1, otp_5990/1,
otp_7078/1, otp_7101/1]).
% Default timetrap timeout (set in init_per_testcase).
@@ -53,12 +55,12 @@ end_per_testcase(_Case, _Config) ->
suite() -> [{suite_callbacks,[ts_install_scb]}].
all() ->
-[abstract_module, attributes, expr, guard, init,
- pattern, strict, update, {group, tickets}].
+ [abstract_module, attributes, expr, guard, init,
+ pattern, strict, update, {group, tickets}].
groups() ->
[{tickets, [],
- [otp_5915, otp_7931, otp_5990, otp_7078, otp_7101]}].
+ [otp_5915, otp_7931, otp_5990, otp_7078, otp_7101]}].
init_per_suite(Config) ->
Config.
@@ -67,10 +69,10 @@ end_per_suite(_Config) ->
ok.
init_per_group(_GroupName, Config) ->
- Config.
+ Config.
end_per_group(_GroupName, Config) ->
- Config.
+ Config.
abstract_module(doc) ->