diff options
author | Björn-Egil Dahlberg <[email protected]> | 2016-04-07 16:20:53 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2016-04-07 16:20:53 +0200 |
commit | e660be75fdaa3d7e98da94194063494ac92ab807 (patch) | |
tree | b2f8c92038461e35b0cb17a8c62764d86f9b4a9e /lib/tools/test/tools_SUITE.erl | |
parent | fba6f786f26aac535fe2c9f3c10472efe841cb09 (diff) | |
download | otp-e660be75fdaa3d7e98da94194063494ac92ab807.tar.gz otp-e660be75fdaa3d7e98da94194063494ac92ab807.tar.bz2 otp-e660be75fdaa3d7e98da94194063494ac92ab807.zip |
Eliminate use of doc and suite clauses
Those clause are obsolete and never used by common_test.
Diffstat (limited to 'lib/tools/test/tools_SUITE.erl')
-rw-r--r-- | lib/tools/test/tools_SUITE.erl | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/tools/test/tools_SUITE.erl b/lib/tools/test/tools_SUITE.erl index 40f3911ee7..0c9b11acf1 100644 --- a/lib/tools/test/tools_SUITE.erl +++ b/lib/tools/test/tools_SUITE.erl @@ -40,10 +40,7 @@ all() -> %%% Test cases starts here. %%% -app_test(doc) -> - ["Test that the .app file does not contain any `basic' errors"]; -app_test(suite) -> - []; +%% Test that the .app file does not contain any `basic' errors app_test(Config) when is_list(Config) -> test_server:app_test(tools, tolerant). |