summaryrefslogtreecommitdiff
path: root/perl/t/file.t
diff options
context:
space:
mode:
Diffstat (limited to 'perl/t/file.t')
-rwxr-xr-xperl/t/file.t6
1 files changed, 4 insertions, 2 deletions
diff --git a/perl/t/file.t b/perl/t/file.t
index ac35c44..0aecd9d 100755
--- a/perl/t/file.t
+++ b/perl/t/file.t
@@ -3,7 +3,7 @@
# Tests for the file object implementation.
#
# Written by Russ Allbery <eagle@eyrie.org>
-# Copyright 2008
+# Copyright 2008, 2014
# The Board of Trustees of the Leland Stanford Junior University
#
# See LICENSE for licensing terms.
@@ -145,4 +145,6 @@ is ($object->destroy (@trace), 1, ' but destroying the object succeeds');
# Clean up.
$admin->destroy;
-unlink ('wallet-db');
+END {
+ unlink ('wallet-db');
+}