aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/src/ct_testspec.erl
diff options
context:
space:
mode:
authorAndrey Pampukha <[email protected]>2010-03-15 15:26:02 +0100
committerRaimo Niskanen <[email protected]>2010-06-09 16:19:13 +0200
commita9c315929d96c7d0d0e5e79f8fc0ba0c7f17e94d (patch)
tree4aee70a5dfd2f379e6b11b3f61ae920f0b7cdb33 /lib/common_test/src/ct_testspec.erl
parent9ad66edc389b04141443bc5339c9f34dfeac59f0 (diff)
downloadotp-a9c315929d96c7d0d0e5e79f8fc0ba0c7f17e94d.tar.gz
otp-a9c315929d96c7d0d0e5e79f8fc0ba0c7f17e94d.tar.bz2
otp-a9c315929d96c7d0d0e5e79f8fc0ba0c7f17e94d.zip
Changed return value tags for config file handling
Return value tags modified and various documentation updates made (work in progress).
Diffstat (limited to 'lib/common_test/src/ct_testspec.erl')
-rw-r--r--lib/common_test/src/ct_testspec.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/common_test/src/ct_testspec.erl b/lib/common_test/src/ct_testspec.erl
index ea30ccc13b..5248a6e319 100644
--- a/lib/common_test/src/ct_testspec.erl
+++ b/lib/common_test/src/ct_testspec.erl
@@ -321,9 +321,9 @@ get_absfile(Callback, FullName,#testspec{spec_dir=SpecDir}) ->
filename:join(Dir,File);
{ok, {config, FullName}}->
FullName;
- {nok, {nofile, FullName}}->
+ {error, {nofile, FullName}}->
FullName;
- {nok, {wrong_config, FullName}}->
+ {error, {wrong_config, FullName}}->
FullName
end.