diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-06-30 20:33:56 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-06-30 20:33:56 -0700 |
commit | 637174112f90e2e782037f7c706f86617e7df263 (patch) | |
tree | 10c17c807e94282116ec0999dc73ee026bbee652 /t | |
parent | 040d2336f034a9225639af9abaec69a2e6da4301 (diff) | |
download | perl-637174112f90e2e782037f7c706f86617e7df263.tar.gz |
Stop podcheck.t --add-link from chomping a new line
# The rest of the db file is output unchanged.
my_safer_print($copy_fh, join "\n", @existing_issues);
Well, actually that *does* change the file. See the diff.
Diffstat (limited to 't')
-rw-r--r-- | t/porting/podcheck.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/porting/podcheck.t b/t/porting/podcheck.t index 188e0c1865..edc58742c2 100644 --- a/t/porting/podcheck.t +++ b/t/porting/podcheck.t @@ -962,7 +962,7 @@ if ($add_link) { } # The rest of the db file is output unchanged. - my_safer_print($copy_fh, join "\n", @existing_issues); + my_safer_print($copy_fh, join "\n", @existing_issues, ""); close_and_rename($copy_fh); exit; |