diff options
author | Tristan Sloughter <t@crashfast.com> | 2015-02-02 18:20:23 -0600 |
---|---|---|
committer | Tristan Sloughter <t@crashfast.com> | 2015-02-02 18:20:23 -0600 |
commit | 1e71b4781774d9f12e240a2af6ddb8f166b8eee3 (patch) | |
tree | bf78af3b1354f0e2d4ae64c7c18e8156a058e901 /test | |
parent | 14037aa45f57fabf01ed94bc8296051987ad1b7f (diff) |
fix find_apps when searching for invalid apps
Diffstat (limited to 'test')
-rw-r--r-- | test/rebar_hooks_SUITE.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/rebar_hooks_SUITE.erl b/test/rebar_hooks_SUITE.erl index 6a00320..642798f 100644 --- a/test/rebar_hooks_SUITE.erl +++ b/test/rebar_hooks_SUITE.erl @@ -34,4 +34,5 @@ build_and_clean_app(Config) -> Vsn = rebar_test_utils:create_random_vsn(), rebar_test_utils:create_app(AppDir, Name, Vsn, [kernel, stdlib]), rebar_test_utils:run_and_check(Config, [], ["compile"], {ok, [{app, Name, valid}]}), - rebar_test_utils:run_and_check(Config, [{provider_hooks, [{post, [{compile, clean}]}]}], ["compile"], {ok, [{app, Name, invalid}]}). + rebar_test_utils:run_and_check(Config, [{provider_hooks, [{post, [{compile, clean}]}]}], + ["compile"], {ok, [{app, Name, invalid}]}). |