Skip to content

Commit

Permalink
Merge pull request #56 from nponeccop/patch-2
Browse files Browse the repository at this point in the history
LC_MESSAGES in 100_basic.t is missing on Windows
  • Loading branch information
lestrrat committed Jun 18, 2014
2 parents d7b6e59 + 563cc69 commit ae78559
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ZMQ-LibZMQ3/t/100_basic.t
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use strict;
use warnings;
use POSIX ();
BEGIN {
POSIX::setlocale(&POSIX::LC_MESSAGES, "C");
POSIX::setlocale(&POSIX::LC_MESSAGES, "C") unless $^O eq 'MSWin32';
}

use Test::More;
Expand Down

0 comments on commit ae78559

Please sign in to comment.