From: Brandon L. Black Date: Fri, 1 Jun 2007 01:49:50 +0000 (+0000) Subject: fix 93nobindvars for people not testing MySQL X-Git-Tag: v0.08010~150^2~29 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=cd99a5570123a519916cb624499f32c66ded517b;p=dbsrgits%2FDBIx-Class.git fix 93nobindvars for people not testing MySQL --- diff --git a/t/93nobindvars.t b/t/93nobindvars.t index e64dbb6..c955a06 100644 --- a/t/93nobindvars.t +++ b/t/93nobindvars.t @@ -65,5 +65,5 @@ is( $it->next, undef, "next past end of resultset ok" ); # clean up our mess END { - $dbh->do("DROP TABLE artist"); + $dbh->do("DROP TABLE artist") if $dbh; }