1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 14:19:10 -04:00

DBD-SQLite: united END blocks

This commit is contained in:
Kenichi Ishigaki 2009-04-02 19:05:17 +00:00
parent 2edda2f41f
commit 3a2bab1072

View file

@ -133,6 +133,4 @@ Test($lengths->[0]->[0] == $lengths->[0]->[1],
"Database actually understands char set") or
warn "($lengths->[0]->[0] != $lengths->[0]->[1])";
END { $dbh->do("DROP TABLE $table"); $dbh->disconnect; }
END { unlink 'output/foo'; rmdir 'output' }
END { $dbh->do("DROP TABLE $table"); $dbh->disconnect; unlink 'output/foo'; rmdir 'output'; }