Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
LC_MESSAGES='C' to ensure known locale (not en_US)
Many thanks to Slaven Rezić (SREZIC)
  • Loading branch information
sdt committed Jun 4, 2014
1 parent 9adb476 commit beb7498
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Test/SVN/Repo.pm
Expand Up @@ -166,8 +166,8 @@ sub _choose_random_port {

sub _try_spawn_server {
my ($self, $port) = @_;
# We're checking message text - need to ensure matching locale
local $ENV{LC_MESSAGES} = 'en_US';
# We're checking message text - need to ensure known locale
local $ENV{LC_MESSAGES} = 'C';
my @cmd = ( 'svnserve',
'-d', # daemon mode
'--foreground', # don't actually daemonize
Expand Down

0 comments on commit beb7498

Please sign in to comment.