[svn:DBD-Pg] r14454 - DBD-Pg/trunk/t
| Newsgroups | gmane.comp.db.postgresql.dbdpg.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: turnstep
Date: Fri Oct 1 20:52:34 2010
New Revision: 14454
Modified:
DBD-Pg/trunk/t/dbdpg_test_setup.pl
Log:
Pass DBI_PASS, per suggestion from CPAN bug 61596
Modified: DBD-Pg/trunk/t/dbdpg_test_setup.pl
==============================================================================
--- DBD-Pg/trunk/t/dbdpg_test_setup.pl (original)
+++ DBD-Pg/trunk/t/dbdpg_test_setup.pl Fri Oct 1 20:52:34 2010
@@ -88,7 +88,7 @@
}
goto GOTDBH if eval {
- $dbh = DBI->connect($testdsn, $testuser, '',
+ $dbh = DBI->connect($testdsn, $testuser, $ENV{DBI_PASS},
{RaiseError => 1, PrintError => 0, AutoCommit => 1});
1;
};