In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/43c6d00448d6f91249aa89dd4a28e3d8a17a491f?hp=a3ceab458cd7b88fe6e7aeea40b905294d0582f9>
- Log ----------------------------------------------------------------- commit 43c6d00448d6f91249aa89dd4a28e3d8a17a491f Author: Steve Hay <[email protected]> Date: Tue Aug 14 01:07:29 2012 +0100 Clean up temporary test file in Search-Dict test Need to untie before unlink on Windows. ----------------------------------------------------------------------- Summary of changes: dist/Search-Dict/t/Dict.t | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/dist/Search-Dict/t/Dict.t b/dist/Search-Dict/t/Dict.t index 04f8c8d..bc997b0 100644 --- a/dist/Search-Dict/t/Dict.t +++ b/dist/Search-Dict/t/Dict.t @@ -99,6 +99,7 @@ close DICT or die "cannot close"; cmp_ok $pos, ">=", 0, "case-insensitive search for 'aarhus' returned > 0"; is $word, "Aarhus", "case-insensitive search found 'Aarhus'"; + untie *DICT; } unlink "dict-$$"; -- Perl5 Master Repository
