From: Norbert Buchmuller Date: Wed, 18 Feb 2009 03:11:58 +0000 (+0100) Subject: * Fixed the initial DROP TABLE statement (used to drop the wrong table). X-Git-Tag: v0.08240~116 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a65c189457174a247da4e0a6d762dc31ba79dcd5;p=dbsrgits%2FDBIx-Class.git * Fixed the initial DROP TABLE statement (used to drop the wrong table). --- diff --git a/t/bindtype_columns.t b/t/bindtype_columns.t index 05b514c..0a3f77d 100644 --- a/t/bindtype_columns.t +++ b/t/bindtype_columns.t @@ -18,7 +18,7 @@ my $dbh = $schema->storage->dbh; { local $SIG{__WARN__} = sub {}; - $dbh->do('DROP TABLE IF EXISTS artist'); + $dbh->do('DROP TABLE IF EXISTS bindtype_test'); # the blob/clob are for reference only, will be useful when we switch to SQLT and can test Oracle along the way $dbh->do(qq[