diff --git a/test/depup_SUITE.erl b/test/depup_SUITE.erl index d5cad85..e2cd3e0 100644 --- a/test/depup_SUITE.erl +++ b/test/depup_SUITE.erl @@ -134,7 +134,7 @@ just_hex(_) -> ignore(_) -> {OriginalConfig, UpdatedConfig} = run_with("ignore.config", [{replace, true}, {just_deps, true}, {ignore, spillway}]), - [{recon, _}] = + [{rebar3_depup, _}] = lists:usort(proplists:get_value(deps, UpdatedConfig) -- proplists:get_value(deps, OriginalConfig)), ok. @@ -143,7 +143,7 @@ ignore(_) -> ignore_config(_) -> {OriginalConfig, UpdatedConfig} = run_with("ignore_config.config", [{replace, true}, {just_deps, true}]), - [{recon, _}] = + [{rebar3_hank, _}] = lists:usort(proplists:get_value(deps, UpdatedConfig) -- proplists:get_value(deps, OriginalConfig)), ok. diff --git a/test/ignore.config b/test/ignore.config index 5dba0b6..d34c95d 100644 --- a/test/ignore.config +++ b/test/ignore.config @@ -1,7 +1,7 @@ {erl_opts, [debug_info]}. {deps, - [{recon, "0.0.1"}, + [{rebar3_depup, "0.0.0"}, {redbug, {pkg, redbug}}, {spillway, {git, "https://github.com/AdRoll/spillway.git", {tag, "v0.0.1"}}}]}. diff --git a/test/ignore_config.config b/test/ignore_config.config index 7965f64..9d04a84 100644 --- a/test/ignore_config.config +++ b/test/ignore_config.config @@ -1,7 +1,7 @@ {erl_opts, [debug_info]}. {deps, - [{recon, "0.0.1"}, + [{rebar3_hank, "0.0.1"}, {redbug, {pkg, redbug}}, {spillway, {git, "https://github.com/AdRoll/spillway.git", {tag, "v0.0.1"}}}]}.