Fix db2 test
Peter Rabbitson [Mon, 2 Feb 2009 20:30:53 +0000 (20:30 +0000)]
t/745db2.t

index 6ddb1cd..82475b1 100644 (file)
@@ -18,7 +18,7 @@ my $schema = DBICTest::Schema->connect($dsn, $user, $pass);
 
 my $dbh = $schema->storage->dbh;
 
-$dbh->do("DROP TABLE artist", { RaiseError => 0, PrintError => 0 });
+eval { $dbh->do("DROP TABLE artist") };
 
 $dbh->do("CREATE TABLE artist (artistid INTEGER GENERATED BY DEFAULT AS IDENTITY (START WITH 1, INCREMENT BY 1), name VARCHAR(255), charfield CHAR(10));");