Skip to content

Commit

Permalink
remove IS_WIN32 platform test for color from prove
Browse files Browse the repository at this point in the history
+ rationale: platform dependencies are handled elsewhere/elsewhen by the test harness

- enables default use of color on 'MSWin32' systems
  • Loading branch information
rivy committed Sep 11, 2016
1 parent d4c7cc5 commit bd6af7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/App/Prove.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit bd6af7d

Please sign in to comment.