diff options
author | Tristan Sloughter <t@crashfast.com> | 2014-11-03 17:49:01 -0600 |
---|---|---|
committer | Tristan Sloughter <t@crashfast.com> | 2014-11-03 17:49:01 -0600 |
commit | ed017289edd48410fb1a02f0058df4be02abe6bb (patch) | |
tree | f6997ac5d62912bb23d47e885b7fc121f08bd0ca /src | |
parent | 08067639ad17ad00f0aa2c6b8bf30b588c04294d (diff) |
switch ct provider to use external provider behavior
Diffstat (limited to 'src')
-rw-r--r-- | src/rebar.app.src | 1 | ||||
-rw-r--r-- | src/rebar_prv_common_test.erl | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/rebar.app.src b/src/rebar.app.src index c41ad92..894ca7b 100644 --- a/src/rebar.app.src +++ b/src/rebar.app.src @@ -14,6 +14,7 @@ syntax_tools, tools, erlware_commons, + providers, relx, inets]}, {env, [ diff --git a/src/rebar_prv_common_test.erl b/src/rebar_prv_common_test.erl index 37d1920..c47ac93 100644 --- a/src/rebar_prv_common_test.erl +++ b/src/rebar_prv_common_test.erl @@ -3,11 +3,11 @@ -module(rebar_prv_common_test). --behaviour(rebar_provider). +-behaviour(provider). -export([init/1, - format_error/2, - do/1]). + do/1, + format_error/2]). -include("rebar.hrl"). |