Skip to content

Commit 5d953ef

Browse files
author
Chris White
committed
Fix tests on mswin32 [minor]
Also, bump version number
1 parent 4328bde commit 5d953ef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/Text/PerlPP.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ package Text::PerlPP;
55

66
# Semantic versioning, packed per Perl rules. Must always be at least one
77
# digit left of the decimal, and six digits right of the decimal.
8-
our $VERSION = '0.500002';
8+
our $VERSION = '0.500003';
99

1010
use 5.010001;
1111
use strict;

t/05-external-command.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ do {
3838
is($out, "howdy\n", "basic echo");
3939
};
4040

41-
if (any { $_ eq $^O } 'dos', 'os2', 'MSWin') {
41+
if (any { $_ eq $^O } 'dos', 'os2', 'MSWin32') {
4242
skip "I don't know how to run the rest of the tests on $^O", $ntests-1;
4343
exit;
4444
}

0 commit comments

Comments
 (0)