X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/496f55c6a1bc218cb4fc89451afa181ac7498102..70c5caebbc8fa418b8a17fbbdb950770f8c2d21b:/t/Support/TestSetup.pm diff --git a/t/Support/TestSetup.pm b/t/Support/TestSetup.pm index 037cfb547..d74e66a7b 100644 --- a/t/Support/TestSetup.pm +++ b/t/Support/TestSetup.pm @@ -48,6 +48,12 @@ sub login { $SIG{__DIE__} = sub { Carp::confess( @_ ) } if $::lx_office_conf{debug}->{backtrace_on_die}; + # Always use English locale for messages from the database during + # tests. + my $query = qq|SET lc_messages = 'en_US.UTF-8'|; + SL::DB->auth->dbh->do($query) || die 'Cannot set database locale to en_US.UTF-8 for auth database'; + SL::DB->client->dbh->do($query) || die 'Cannot set database locale to en_US.UTF-8 for main database'; + return 1; }