From: Johannes Plunien <plu@cpan.org>
Date: Fri, 8 May 2009 08:30:20 +0000 (+0000)
Subject: Set NLS_LANG so we  have a predictable date format when using MON
X-Git-Tag: v0.08103~111
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f27af16d25d5bd6a713f6852e030c1edda30f161;p=dbsrgits%2FDBIx-Class.git

Set NLS_LANG so we  have a predictable date format when using MON
---

diff --git a/t/73oracle_inflate.t b/t/73oracle_inflate.t
index 20e7089..22e1d62 100644
--- a/t/73oracle_inflate.t
+++ b/t/73oracle_inflate.t
@@ -23,6 +23,7 @@ else {
 
 # DateTime::Format::Oracle needs this set
 $ENV{NLS_DATE_FORMAT} = 'DD-MON-YY';
+$ENV{NLS_LANG} = 'AMERICAN_AMERICA.WE8ISO8859P1';
 
 my $schema = DBICTest::Schema->connect($dsn, $user, $pass);