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/digraph_utils_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/digraph_utils_SUITE.erl')
-rw-r--r-- | lib/stdlib/test/digraph_utils_SUITE.erl | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/stdlib/test/digraph_utils_SUITE.erl b/lib/stdlib/test/digraph_utils_SUITE.erl index 03a3cc3166..f3a9d485c2 100644 --- a/lib/stdlib/test/digraph_utils_SUITE.erl +++ b/lib/stdlib/test/digraph_utils_SUITE.erl @@ -25,7 +25,8 @@ -include_lib("test_server/include/test_server.hrl"). -endif. --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([simple/1, loop/1, isolated/1, topsort/1, subgraph/1, condensation/1, tree/1]). @@ -36,8 +37,8 @@ suite() -> [{suite_callbacks,[ts_install_scb]}]. all() -> -[simple, loop, isolated, topsort, subgraph, - condensation, tree]. + [simple, loop, isolated, topsort, subgraph, + condensation, tree]. groups() -> []. @@ -49,10 +50,10 @@ end_per_suite(_Config) -> ok. init_per_group(_GroupName, Config) -> - Config. + Config. end_per_group(_GroupName, Config) -> - Config. + Config. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |