summaryrefslogtreecommitdiff
path: root/t/lib/st-store.t
diff options
context:
space:
mode:
Diffstat (limited to 't/lib/st-store.t')
-rw-r--r--t/lib/st-store.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/lib/st-store.t b/t/lib/st-store.t
index c49a71dbcb..dd14617a39 100644
--- a/t/lib/st-store.t
+++ b/t/lib/st-store.t
@@ -52,7 +52,7 @@ print "ok 4\n";
print "not " unless $got eq $dumped;
print "ok 5\n";
-unlink 'store';
+1 while unlink 'store';
package FOO; @ISA = qw(Storable);
@@ -114,6 +114,6 @@ print "not " unless $@;
print "ok 20\n";
close OUT;
-END { unlink 'store' }
+END { 1 while unlink 'store' }