diff options
author | Lukas Larsson <[email protected]> | 2011-07-29 14:47:23 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2011-08-31 10:51:35 +0200 |
commit | 850f0268000dfb3e062689c9b5820c7d49feb2a2 (patch) | |
tree | f7b4848c4db585df30e698f97d5a70726a8c977e /lib | |
parent | abb58770744de4b28a5d29abd6904bb9026d25b1 (diff) | |
download | otp-850f0268000dfb3e062689c9b5820c7d49feb2a2.tar.gz otp-850f0268000dfb3e062689c9b5820c7d49feb2a2.tar.bz2 otp-850f0268000dfb3e062689c9b5820c7d49feb2a2.zip |
Update CTH priority default to be 0
Diffstat (limited to 'lib')
-rw-r--r-- | lib/common_test/src/ct_hooks.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common_test/src/ct_hooks.erl b/lib/common_test/src/ct_hooks.erl index 9b288ad168..44aba94cd1 100644 --- a/lib/common_test/src/ct_hooks.erl +++ b/lib/common_test/src/ct_hooks.erl @@ -34,7 +34,7 @@ %% If you change this, remember to update ct_util:look -> stop clause as well. -define(config_name, ct_hooks). --record(ct_hook_config, {id, module, prio, scope, opts = [], state = []}). +-record(ct_hook_config, {id, module, prio = 0, scope, opts = [], state = []}). %% ------------------------------------------------------------------------- %% API Functions |