diff options
author | Peter Andersson <[email protected]> | 2010-08-27 17:54:40 +0200 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2010-09-06 15:08:58 +0200 |
commit | 2162c7f0f1e9abab7126a0606172ae97deaba44d (patch) | |
tree | 1ef6131fadaee9c95645b02f37b4543fafd3aed5 /lib/common_test/test | |
parent | 0ec995ee9acdb82e7b03f7b48931119e296bf42e (diff) | |
download | otp-2162c7f0f1e9abab7126a0606172ae97deaba44d.tar.gz otp-2162c7f0f1e9abab7126a0606172ae97deaba44d.tar.bz2 otp-2162c7f0f1e9abab7126a0606172ae97deaba44d.zip |
Fix problem with prepared_tests tuple not being recognized
Diffstat (limited to 'lib/common_test/test')
-rw-r--r-- | lib/common_test/test/ct_master_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common_test/test/ct_master_SUITE.erl b/lib/common_test/test/ct_master_SUITE.erl index 87e2c3049a..e0e1f93db2 100644 --- a/lib/common_test/test/ct_master_SUITE.erl +++ b/lib/common_test/test/ct_master_SUITE.erl @@ -101,7 +101,7 @@ make_spec(DataDir, FileName, NodeNames, Suites, Config)-> NS = lists:map(fun(NodeName)-> {init, NodeName, [ - {node_start, [{startup_functions, []}, {monitor_master, false}]}, + {node_start, [{startup_functions, []}, {monitor_master, true}]}, {eval, {erlang, nodes, []}} ] } |