aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/src/ct_framework.erl
diff options
context:
space:
mode:
authorPeter Andersson <[email protected]>2011-04-20 22:05:54 +0200
committerPeter Andersson <[email protected]>2011-04-28 22:46:50 +0200
commit2d427b63281b586af260d39cee2c910ff0fe5aa2 (patch)
tree7e2eb59434ce4e6bbbaff396a74215488772b248 /lib/common_test/src/ct_framework.erl
parent2de8f6d4b2e572171cb3237ed7b9f5a1dfcc16e4 (diff)
downloadotp-2d427b63281b586af260d39cee2c910ff0fe5aa2.tar.gz
otp-2d427b63281b586af260d39cee2c910ff0fe5aa2.tar.bz2
otp-2d427b63281b586af260d39cee2c910ff0fe5aa2.zip
Fix error in vts mode, making it impossible to execute suites with test case groups.
Diffstat (limited to 'lib/common_test/src/ct_framework.erl')
-rw-r--r--lib/common_test/src/ct_framework.erl6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/common_test/src/ct_framework.erl b/lib/common_test/src/ct_framework.erl
index 2572bf1dde..c016b9c66b 100644
--- a/lib/common_test/src/ct_framework.erl
+++ b/lib/common_test/src/ct_framework.erl
@@ -1157,12 +1157,14 @@ error_in_suite(Config) ->
%% if the group config functions are missing in the suite,
%% use these instead
ct_init_per_group(GroupName, Config) ->
- ct_logs:log("WARNING", "init_per_group/2 for ~w missing in suite, using default.",
+ ct_logs:log("WARNING", "init_per_group/2 for ~w missing "
+ "in suite, using default.",
[GroupName]),
Config.
ct_end_per_group(GroupName, _) ->
- ct_logs:log("WARNING", "end_per_group/2 for ~w missing in suite, using default.",
+ ct_logs:log("WARNING", "end_per_group/2 for ~w missing "
+ "in suite, using default.",
[GroupName]),
ok.