From 3a2bab10722c6aeb98ae8938fddda9902707c052 Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Thu, 2 Apr 2009 19:05:17 +0000 Subject: [PATCH] DBD-SQLite: united END blocks --- t/11unicode.t | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/t/11unicode.t b/t/11unicode.t index 579a20f..fb40bdc 100644 --- a/t/11unicode.t +++ b/t/11unicode.t @@ -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'; }