diff options
author | Lukas Larsson <[email protected]> | 2010-12-14 17:04:13 +0100 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2011-02-17 17:34:51 +0100 |
commit | afd8d827f9d1dd3c2a58a29ce3e102b21b8aa6ed (patch) | |
tree | 552c453e867b0ca14b2dde0862f3d06a05db5461 /lib/os_mon/test/os_mon_SUITE.erl | |
parent | 132f31884e188cfdb78a79fdfaf7e87e8f3ae010 (diff) | |
download | otp-afd8d827f9d1dd3c2a58a29ce3e102b21b8aa6ed.tar.gz otp-afd8d827f9d1dd3c2a58a29ce3e102b21b8aa6ed.tar.bz2 otp-afd8d827f9d1dd3c2a58a29ce3e102b21b8aa6ed.zip |
Fix formatting for os_mon
Diffstat (limited to 'lib/os_mon/test/os_mon_SUITE.erl')
-rw-r--r-- | lib/os_mon/test/os_mon_SUITE.erl | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/lib/os_mon/test/os_mon_SUITE.erl b/lib/os_mon/test/os_mon_SUITE.erl index ac11475789..a2f5317daf 100644 --- a/lib/os_mon/test/os_mon_SUITE.erl +++ b/lib/os_mon/test/os_mon_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]). -export([init_per_testcase/2, end_per_testcase/2]). %% Test cases @@ -41,10 +42,10 @@ end_per_testcase(_Case, Config) -> suite() -> [{suite_callbacks,[ts_install_scb]}]. all() -> -case test_server:os_type() of - {unix, sunos} -> [app_file, config]; - _OS -> [app_file] -end. + case test_server:os_type() of + {unix, sunos} -> [app_file, config]; + _OS -> [app_file] + end. groups() -> []. @@ -56,10 +57,10 @@ end_per_suite(_Config) -> ok. init_per_group(_GroupName, Config) -> - Config. + Config. end_per_group(_GroupName, Config) -> - Config. + Config. app_file(suite) -> |