summaryrefslogtreecommitdiff
path: root/lib/Pod
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2012-02-07 15:46:03 +0100
committerNicholas Clark <nick@ccl4.org>2012-02-08 17:59:32 +0100
commit1f9a5459c27f9d55f3e541af0f584ba0b57e4037 (patch)
treeebf3836365d11a178693733892a4bb97415d95af /lib/Pod
parentc051e30b26718a223934094434113a269c05ae97 (diff)
downloadperl-1f9a5459c27f9d55f3e541af0f584ba0b57e4037.tar.gz
The cleanup code in lib/Pod/t/eol.t needs updating to track Pod::Html changes.
eol.t gained code to clean up temporary files it generated as part of commit 0ec158f4b0db050a in 2002. The temporary file names used by Pod::Html were changed by commit 33869856bc668ad8 in 2003, but eol.t had never been updated.
Diffstat (limited to 'lib/Pod')
-rw-r--r--lib/Pod/t/eol.t3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Pod/t/eol.t b/lib/Pod/t/eol.t
index 987c150575..2fc376dd71 100644
--- a/lib/Pod/t/eol.t
+++ b/lib/Pod/t/eol.t
@@ -90,6 +90,5 @@ ok($cksum2 == $cksum3, "LF vs CRLF");
close IN;
END {
- 1 while unlink("$$.pod", "$$.in", "$$.o1", "$$.o2", "$$.o3",
- "pod2htmd.x~~", "pod2htmi.x~~");
+ 1 while unlink("$$.pod", "$$.in", "$$.o1", "$$.o2", "$$.o3", "pod2htmd.tmp");
}