summaryrefslogtreecommitdiff
path: root/test/rebar_deps_SUITE.erl
diff options
context:
space:
mode:
authorPierre Fenoll <pierrefenoll@gmail.com>2019-05-06 18:39:05 +0200
committerPierre Fenoll <pierrefenoll@gmail.com>2019-05-06 18:39:05 +0200
commit199705762c9fa0e0ff9cf494df731fe8fc9f4406 (patch)
tree9cb2ec9fd42d3f5f99bce73c8d75a7a8312d3788 /test/rebar_deps_SUITE.erl
parent2c5f95aceb74d1600953e45d3939682010f171ad (diff)
maybe a bit too exhaustive pattern matching to pass tests
Signed-off-by: Pierre Fenoll <pierrefenoll@gmail.com>
Diffstat (limited to 'test/rebar_deps_SUITE.erl')
-rw-r--r--test/rebar_deps_SUITE.erl11
1 files changed, 7 insertions, 4 deletions
diff --git a/test/rebar_deps_SUITE.erl b/test/rebar_deps_SUITE.erl
index f9be2a3..58b9742 100644
--- a/test/rebar_deps_SUITE.erl
+++ b/test/rebar_deps_SUITE.erl
@@ -560,10 +560,13 @@ check_warnings(Warns, [{Name, Vsn} | Rest], Type) ->
in_warnings(git, Warns, NameRaw, VsnRaw) ->
Name = iolist_to_binary(NameRaw),
- 1 =< length([1 || {_, [AppName, {git, _, {_, Vsn}}]} <- Warns,
- AppName =:= Name, Vsn =:= VsnRaw]);
+ Vsn = iolist_to_binary([$",VsnRaw,$"]),
+ 1 =< length([1 || {_, [[AppName, $\s,$(,$f,$r,$o,$m,$\s,[${,["git",$,, _URL, $,,[${,["tag",$,, AppVsn], $}]],$}],$)]]} <- Warns,
+ iolist_to_binary(AppName) =:= Name,
+ iolist_to_binary(AppVsn) =:= Vsn]);
in_warnings(pkg, Warns, NameRaw, VsnRaw) ->
Name = iolist_to_binary(NameRaw),
Vsn = iolist_to_binary(VsnRaw),
- 1 =< length([1 || {_, [AppName, {pkg, _, AppVsn}]} <- Warns,
- AppName =:= Name, AppVsn =:= Vsn]).
+ 1 =< length([1 || {_, [[AppName, $\s,$v, AppVsn]]} <- Warns,
+ iolist_to_binary(AppName) =:= Name,
+ iolist_to_binary(AppVsn) =:= Vsn]).