From bd6af7d4344e405e2ade88cc00735951dd646a8a Mon Sep 17 00:00:00 2001 From: Roy Ivy III Date: Sun, 11 Sep 2016 13:58:53 -0500 Subject: [PATCH] remove IS_WIN32 platform test for color from `prove` + rationale: platform dependencies are handled elsewhere/elsewhen by the test harness - enables default use of color on 'MSWin32' systems --- lib/App/Prove.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/App/Prove.pm b/lib/App/Prove.pm index c3216592..f522832d 100644 --- a/lib/App/Prove.pm +++ b/lib/App/Prove.pm @@ -279,7 +279,7 @@ sub _help { sub _color_default { my $self = shift; - return -t STDOUT && !$ENV{HARNESS_NOTTY} && !IS_WIN32; + return -t STDOUT && !$ENV{HARNESS_NOTTY}; } sub _get_args {