diff options
author | Henrik Nord <[email protected]> | 2011-08-29 17:25:25 +0200 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2011-08-29 17:25:25 +0200 |
commit | 1a2fbf178614f752f04fd5c7499bb659293adf10 (patch) | |
tree | 32243efc57c967e31f3f2b239a70bb1e827cdd4b /lib/test_server | |
parent | b9ef73203a1b7f1400dc6d302827d7d732bab3f4 (diff) | |
parent | 7f5f7b08a8f0ed55126192beaed9d748f14c8f0a (diff) | |
download | otp-1a2fbf178614f752f04fd5c7499bb659293adf10.tar.gz otp-1a2fbf178614f752f04fd5c7499bb659293adf10.tar.bz2 otp-1a2fbf178614f752f04fd5c7499bb659293adf10.zip |
Merge branch 'dev' into major
Diffstat (limited to 'lib/test_server')
-rw-r--r-- | lib/test_server/src/ts_install_cth.erl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/test_server/src/ts_install_cth.erl b/lib/test_server/src/ts_install_cth.erl index c5444a342f..0770190c36 100644 --- a/lib/test_server/src/ts_install_cth.erl +++ b/lib/test_server/src/ts_install_cth.erl @@ -49,8 +49,7 @@ -include_lib("kernel/include/file.hrl"). --type proplist() :: list({atom(),term()}). --type config() :: proplist(). +-type config() :: proplists:proplist(). -type reason() :: term(). -type skip_or_fail() :: {skip, reason()} | {auto_skip, reason()} | @@ -65,7 +64,7 @@ id(_Opts) -> ?MODULE. %% @doc Always called before any other callback function. --spec init(Id :: term(), Opts :: proplist()) -> +-spec init(Id :: term(), Opts :: proplists:proplist()) -> State :: #state{}. init(_Id, Opts) -> Nodenames = proplists:get_value(nodenames, Opts, 0), |