diff options
Diffstat (limited to 'plugins/proper.mk')
-rw-r--r-- | plugins/proper.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/proper.mk b/plugins/proper.mk index d6ae48e..fe9a980 100644 --- a/plugins/proper.mk +++ b/plugins/proper.mk @@ -15,7 +15,7 @@ define proper_check.erl case atom_to_list(F) of "prop_" ++ _ -> io:format("Testing ~p:~p/0~n", [M, F]), - proper:quickcheck(M:F()); + proper:quickcheck(M:F(), nocolors); _ -> true end @@ -25,7 +25,7 @@ define proper_check.erl case $(1) of all -> [true] =:= lists:usort([Module(M) || M <- [$(call comma_list,$(3))]]); module -> Module($(2)); - function -> proper:quickcheck($(2)) + function -> proper:quickcheck($(2), nocolors) end of true -> halt(0); |