Skip to content

Commit

Permalink
cross test for [] was slightly wrong
Browse files Browse the repository at this point in the history
stringizing a list puts an extra space in the middle
  • Loading branch information
TimToady committed Feb 25, 2014
1 parent 2582eed commit 26ca4e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion S03-metaops/cross.t
Expand Up @@ -109,7 +109,7 @@ is (<a b> X <c d> X < e f>).join(','),

#?rakudo todo 'RT 74072'
#?niecza todo
is ([1,2] X~ <a b>), '1 2a1 2b', '[] does not flatten';
is ([1,2] X~ <a b>), '1 2a 1 2b', '[] does not flatten';

is (1,2 X ( <a b> X "x")).join, '1a1x1b1x2a2x2b2x',
'Nested X works';
Expand Down

0 comments on commit 26ca4e3

Please sign in to comment.