diff options
author | Alexander Sedov <asedov@platbox.com> | 2016-08-04 15:06:47 +0300 |
---|---|---|
committer | Alexander Sedov <asedov@platbox.com> | 2016-08-04 15:06:47 +0300 |
commit | a5bdf11770a8b57f7db2ca28f14dbf66c43673db (patch) | |
tree | f819e94e98abec3796f64e31a01c5ebbee36b707 /src | |
parent | fbfcdfcb8bd0a045cb4ed32b3ba75fffbb25f22f (diff) |
Typo fix.
Diffstat (limited to 'src')
-rw-r--r-- | src/rebar_prv_common_test.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_prv_common_test.erl b/src/rebar_prv_common_test.erl index fbd0e89..1e0632e 100644 --- a/src/rebar_prv_common_test.erl +++ b/src/rebar_prv_common_test.erl @@ -221,7 +221,7 @@ select_tests(State, ProjectApps, CmdOpts, CfgOpts) -> Configs = lists:flatmap(fun(Filename) -> rebar_file_utils:consult_config(State, Filename) end, SysConfigs), - [application:load(Application) || Config <- SysConfigs, {Application, _} <- Config], + [application:load(Application) || Config <- Configs, {Application, _} <- Config], rebar_utils:reread_config(Configs), Merged = lists:ukeymerge(1, |