diff options
author | Tristan Sloughter <t@crashfast.com> | 2015-05-22 15:15:36 -0500 |
---|---|---|
committer | Tristan Sloughter <t@crashfast.com> | 2015-05-22 18:12:26 -0500 |
commit | f772dcee2e7082f3da4520043de888d5d68aa750 (patch) | |
tree | e827bf252845a0447191b017310c7886d9988a99 /test | |
parent | 37ac2b78333d23abfa9274ce773eb620f5813657 (diff) |
fix storing of pkg and src deps in app_info
Diffstat (limited to 'test')
-rw-r--r-- | test/mock_pkg_resource.erl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/mock_pkg_resource.erl b/test/mock_pkg_resource.erl index e94ea93..9ed0962 100644 --- a/test/mock_pkg_resource.erl +++ b/test/mock_pkg_resource.erl @@ -151,15 +151,14 @@ find_parts([{AppName, Deps}|Rest], Skip, Acc) -> true -> find_parts(Rest, Skip, Acc); false -> AccNew = dict:store(AppName, - [{<<"deps">>,Deps}, {<<"link">>,<<"undef">>}], + Deps, Acc), find_parts(Rest, Skip, AccNew) end. to_graph_parts(Dict) -> LastUpdated = os:timestamp(), - dict:fold(fun(K,V,{Ks,Vs}) -> - {_,Deps} = lists:keyfind(<<"deps">>, 1, V), + dict:fold(fun(K,Deps,{Ks,Vs}) -> {[{K,LastUpdated}|Ks], [{K,{list_to_binary(atom_to_list(DK)), list_to_binary(DV)}} || {DK,DV} <- Deps] ++ Vs} |