Silence cdbi tests like everything else
[dbsrgits/DBIx-Class.git] / t / testlib / MyBase.pm
index 7951482..eeb7cf0 100644 (file)
@@ -8,7 +8,8 @@ use DBI;
 
 use vars qw/$dbh/;
 
-my @connect = ("dbi:mysql:test", "", "");
+# temporary, might get switched to the new test framework someday
+my @connect = ("dbi:mysql:test", "", "", { PrintError => 0});
 
 $dbh = DBI->connect(@connect) or die DBI->errstr;
 my @table;