diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/rebar_prv_eunit.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_prv_eunit.erl b/src/rebar_prv_eunit.erl index 9af2965..4078aa7 100644 --- a/src/rebar_prv_eunit.erl +++ b/src/rebar_prv_eunit.erl @@ -346,7 +346,7 @@ resolve_eunit_opts(State) -> true -> set_verbose(EUnitOpts); false -> EUnitOpts end, - case proplists:get_value(eunit_formatters, Opts, true) of + case proplists:get_value(eunit_formatters, EUnitOpts1, true) of true -> custom_eunit_formatters(EUnitOpts1); false -> EUnitOpts1 end. |