diff options
author | Lukas Larsson <[email protected]> | 2010-12-14 15:32:45 +0100 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2011-02-17 17:34:49 +0100 |
commit | a528cd498462c13a02af2865f977cbb6ef65050f (patch) | |
tree | 78af41307246859eadd49616628430dc9652b612 /lib/edoc | |
parent | b3b108bac507ef4572226ad086912865f4672edb (diff) | |
download | otp-a528cd498462c13a02af2865f977cbb6ef65050f.tar.gz otp-a528cd498462c13a02af2865f977cbb6ef65050f.tar.bz2 otp-a528cd498462c13a02af2865f977cbb6ef65050f.zip |
Fix formatting for edoc
Diffstat (limited to 'lib/edoc')
-rw-r--r-- | lib/edoc/test/edoc_SUITE.erl | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/edoc/test/edoc_SUITE.erl b/lib/edoc/test/edoc_SUITE.erl index a0af2d9cbb..54b999d068 100644 --- a/lib/edoc/test/edoc_SUITE.erl +++ b/lib/edoc/test/edoc_SUITE.erl @@ -20,7 +20,8 @@ -include_lib("test_server/include/test_server.hrl"). %% Test server specific exports --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]). %% Test cases -export([build_std/1]). @@ -28,7 +29,7 @@ suite() -> [{suite_callbacks,[ts_install_scb]}]. all() -> -[build_std]. + [build_std]. groups() -> []. @@ -40,10 +41,10 @@ end_per_suite(_Config) -> ok. init_per_group(_GroupName, Config) -> - Config. + Config. end_per_group(_GroupName, Config) -> - Config. + Config. build_std(suite) -> |