Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix missing quotes in S02-literals/quoting.t
The test description talks about a "second" quote involving $gorch, but
$gorch was not quoted. This did not matter before GLR due to implicit
flattening.
  • Loading branch information
niner committed Aug 28, 2015
1 parent d663fb5 commit 3177163
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion S02-literals/quoting.t
Expand Up @@ -284,7 +284,7 @@ Note that non-ASCII tests are kept in quoting-unicode.t
#?niecza todo
{
my $gorch = "foo bar";
my @q := «a b c "$foo" f g $gorch m n '$bar' x y z»;
my @q := «a b c "$foo" f g "$gorch" m n '$bar' x y z»;
is(+@q, 13, "13 elements in mixed quoted/unquoted «» list, non-flattened");
is(@q[0], 'a', 'unquoted words are split correctly in the presence of quotes');
is(@q[3], $foo, 'first interpolation is $foo');
Expand Down

0 comments on commit 3177163

Please sign in to comment.