diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/rlx_command_SUITE.erl | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/rlx_command_SUITE.erl b/test/rlx_command_SUITE.erl index 9d1513f..32efc1e 100644 --- a/test/rlx_command_SUITE.erl +++ b/test/rlx_command_SUITE.erl @@ -62,9 +62,7 @@ normal_passing_case(Config) -> {ok, {Opts, Targets}} = getopt:parse(relx:opt_spec_list(), CmdLine), {ok, State} = rlx_cmd_args:args2state(Opts, Targets), {ok, State1} = rlx_config:do(State), - Overrides = rlx_state:overrides(State1), - ct:pal("Overrides: ~p~n", [Overrides]), - ?assertMatch([{lib1,Lib1}], Overrides), + ?assertMatch([{lib1,Lib1}], rlx_state:overrides(State1)), ?assertMatch([Lib1, Lib2], rlx_state:lib_dirs(State1)), ?assertMatch(Outdir, rlx_state:base_output_dir(State1)), |