1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 22:28:47 -04:00

DBD-SQLite: removed an unused variable

This commit is contained in:
Kenichi Ishigaki 2009-08-15 09:25:00 +00:00
parent e9cd055158
commit c944fdc5e4

View file

@ -35,7 +35,6 @@ foreach my $call_func (@CALL_FUNCS) {
ok($dbh->do("CREATE TABLE Blah ( id INTEGER, val VARCHAR )"));
ok($dbh->commit);
ok($dbh->do("INSERT INTO Blah VALUES ( 1, 'Test1' )"));
my $start = time;
eval {
$dbh2->do("INSERT INTO Blah VALUES ( 2, 'Test2' )");
};