diff options
author | Tristan Sloughter <t@crashfast.com> | 2015-04-05 08:01:18 -0500 |
---|---|---|
committer | Tristan Sloughter <t@crashfast.com> | 2015-04-05 08:01:18 -0500 |
commit | 019152e1d5e23e60f734e8d14309ea7ed45b01fc (patch) | |
tree | 6b85da0ed0946371232e90312df049cf6c280817 | |
parent | 3dd9d02a0e2f46c3485829a3db046a74553bf06e (diff) |
fix eunit comment
-rw-r--r-- | src/rebar_prv_eunit.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rebar_prv_eunit.erl b/src/rebar_prv_eunit.erl index 473a913..2492154 100644 --- a/src/rebar_prv_eunit.erl +++ b/src/rebar_prv_eunit.erl @@ -37,7 +37,7 @@ init(State) -> -spec do(rebar_state:t()) -> {ok, rebar_state:t()} | {error, string()}. do(State) -> ?INFO("Performing EUnit tests...", []), - %% Run ct provider prehooks + %% Run eunit provider prehooks Providers = rebar_state:providers(State), Cwd = rebar_dir:get_cwd(), rebar_hooks:run_all_hooks(Cwd, pre, ?PROVIDER, Providers, State), @@ -45,7 +45,7 @@ do(State) -> case prepare_tests(State) of {ok, Tests} -> {ok, State1} = do_tests(State, Tests), - %% Run ct provider posthooks + %% Run eunit provider posthooks rebar_hooks:run_all_hooks(Cwd, post, ?PROVIDER, Providers, State1), {ok, State1}; Error -> |