Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Correct wrong test that hid a Rakudo bug.
We're meant to chomp separators by default, but previously only did
chomp \r\n and \n. Now that's fixed in Rakudo, and this wrong test
came to light.
  • Loading branch information
jnthn committed Nov 5, 2015
1 parent c5cfb6a commit 9d9cf0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion S32-io/io-handle.t
Expand Up @@ -30,7 +30,7 @@ my $path = "io-handle-testfile";
}
my $RT123888 = $path.IO.open(:r);
$RT123888.nl-in = "+";
is $RT123888.lines, <A+ B+ C+ D+>, "Changing input-line-separator works for .lines";
is $RT123888.lines, <A B C D>, "Changing input-line-separator works for .lines";
}

try { unlink $path }
Expand Down

0 comments on commit 9d9cf0b

Please sign in to comment.