aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public_key/test/public_key_SUITE.erl
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2011-01-24 14:43:56 +0100
committerIngela Anderton Andin <[email protected]>2011-01-24 14:43:56 +0100
commitac303885b1301762f772fcb7337fdfdc97c111d6 (patch)
treeeafc223301521b8d69249188e05cd35099906286 /lib/public_key/test/public_key_SUITE.erl
parentc9aae9e6874950c671c08940d4e72abc616c550e (diff)
downloadotp-ac303885b1301762f772fcb7337fdfdc97c111d6.tar.gz
otp-ac303885b1301762f772fcb7337fdfdc97c111d6.tar.bz2
otp-ac303885b1301762f772fcb7337fdfdc97c111d6.zip
Changed crypto start test so that it works as intended
Diffstat (limited to 'lib/public_key/test/public_key_SUITE.erl')
-rw-r--r--lib/public_key/test/public_key_SUITE.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public_key/test/public_key_SUITE.erl b/lib/public_key/test/public_key_SUITE.erl
index 3bd81a04ea..1bc1c8ec75 100644
--- a/lib/public_key/test/public_key_SUITE.erl
+++ b/lib/public_key/test/public_key_SUITE.erl
@@ -41,7 +41,7 @@
%% variable, but should NOT alter/remove any existing entries.
%%--------------------------------------------------------------------
init_per_suite(Config) ->
- case crypto:start() of
+ case application:start(crypto) of
ok ->
Config;
_ ->
@@ -54,7 +54,7 @@ init_per_suite(Config) ->
%% Description: Cleanup after the whole suite
%%--------------------------------------------------------------------
end_per_suite(_Config) ->
- crypto:stop().
+ application:stop(crypto).
%%--------------------------------------------------------------------
%% Function: init_per_testcase(TestCase, Config) -> Config