Remove failure detection from eunit test

As it now consistently passes
This commit is contained in:
Martin Sumner 2018-04-30 17:48:34 +01:00
parent 941d4d2577
commit 37b067e61b

View file

@ -1923,13 +1923,6 @@ foldobjects_vs_foldheads_bybucket_testto() ->
length(KeyHashList2E), length(KeyHashList2E),
length(KeyHashList2F)]), length(KeyHashList2F)]),
CompareL = lists:usort(KeyHashList2E ++ KeyHashList2F), CompareL = lists:usort(KeyHashList2E ++ KeyHashList2F),
SubtractL = lists:subtract(KeyHashList2B, CompareL),
case length(SubtractL) of
0 ->
io:format("Test looks like passing~n");
_L ->
io:format("Failure on SplitInt ~w~n", [SplitInt])
end,
?assertMatch(true, lists:usort(KeyHashList2B) == CompareL) ?assertMatch(true, lists:usort(KeyHashList2B) == CompareL)
end, end,