diff options
author | Björn-Egil Dahlberg <[email protected]> | 2016-05-20 19:47:25 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2016-05-20 19:47:25 +0200 |
commit | 329d98b2207a828f44751992d4b6774d25afea87 (patch) | |
tree | 502119a213f31f4ac0eaf7db7be1b580d1433857 /lib/xmerl/test | |
parent | e1cef0d4f0f151476f99eb18e7a7263e8e9cb2f5 (diff) | |
download | otp-329d98b2207a828f44751992d4b6774d25afea87.tar.gz otp-329d98b2207a828f44751992d4b6774d25afea87.tar.bz2 otp-329d98b2207a828f44751992d4b6774d25afea87.zip |
Eliminate use of the ?t macro
Diffstat (limited to 'lib/xmerl/test')
-rw-r--r-- | lib/xmerl/test/xmerl_appup_test.erl | 28 |
1 files changed, 1 insertions, 27 deletions
diff --git a/lib/xmerl/test/xmerl_appup_test.erl b/lib/xmerl/test/xmerl_appup_test.erl index cfadb66ec7..3a6ac12d33 100644 --- a/lib/xmerl/test/xmerl_appup_test.erl +++ b/lib/xmerl/test/xmerl_appup_test.erl @@ -31,32 +31,6 @@ all() -> [appup]. -groups() -> - []. - -init_per_group(_GroupName, Config) -> - Config. - -end_per_group(_GroupName, Config) -> - Config. - - -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - -init_per_suite(suite) -> []; -init_per_suite(doc) -> []; -init_per_suite(Config) when is_list(Config) -> - Config. - - -end_per_suite(suite) -> []; -end_per_suite(doc) -> []; -end_per_suite(Config) when is_list(Config) -> - Config. - - -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - %% perform a simple check of the appup file appup(Config) when is_list(Config) -> - ok = ?t:appup_test(xmerl). + ok = test_server:appup_test(xmerl). |