diff options
author | Andreas König <a.koenig@mind.de> | 2001-12-29 22:42:37 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-29 20:22:57 +0000 |
commit | d1e4d418969ad3c5103f26f33d0abea5b1570935 (patch) | |
tree | a0d4611eb75d8f94e2d42291b944bf356edb8c70 /t/cmd | |
parent | cb69f87a007debfba124ee7db6ef7f6a2ac42df7 (diff) | |
download | perl-d1e4d418969ad3c5103f26f33d0abea5b1570935.tar.gz |
cleaner close on tests, take 2
Message-ID: <m33d1tvjuq.fsf@anima.de>
(except for the three DB_File patch fragments)
p4raw-id: //depot/perl@13940
Diffstat (limited to 't/cmd')
-rwxr-xr-x | t/cmd/while.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/cmd/while.t b/t/cmd/while.t index ecc15eda53..226db471ef 100755 --- a/t/cmd/while.t +++ b/t/cmd/while.t @@ -8,7 +8,7 @@ print tmp "tvi920\n"; print tmp "vt100\n"; print tmp "Amiga\n"; print tmp "paper\n"; -close tmp; +close tmp or die "Could not close: $!"; # test "last" command |