summaryrefslogtreecommitdiff
path: root/lib/Tie
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2003-06-02 20:59:39 +0000
committerGurusamy Sarathy <gsar@cpan.org>2003-06-02 20:59:39 +0000
commita56f8b5e4f65d2e4333d2ecebad5f1ab8a72446f (patch)
treebf75cd872c0e300ab62e3881b510b3695fa9e4be /lib/Tie
parent6ad82cf1055fa5cff3b9ba8c9e8dc06612f76772 (diff)
downloadperl-a56f8b5e4f65d2e4333d2ecebad5f1ab8a72446f.tar.gz
fix for 09_gen_rs.t#59 failure on windows
p4raw-id: //depot/perl@19669
Diffstat (limited to 'lib/Tie')
-rw-r--r--lib/Tie/File/t/09_gen_rs.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Tie/File/t/09_gen_rs.t b/lib/Tie/File/t/09_gen_rs.t
index c1ef7400c8..43b7140a92 100644
--- a/lib/Tie/File/t/09_gen_rs.t
+++ b/lib/Tie/File/t/09_gen_rs.t
@@ -147,7 +147,7 @@ if (setup_badly_terminated_file(2)) {
# There's special-case code to fix the final record when it is read normally.
# But the $#a forces it to be read from the cache, which skips the
# termination.
-$badrec = "world\nhello";
+$badrec = "world${RECSEP}hello";
if (setup_badly_terminated_file(1)) {
tie(@a, "Tie::File", $file, mode => 0, recsep => $RECSEP)
or die "Couldn't tie file: $!";