Navigation Menu

Skip to content

Commit

Permalink
Fix new tests to not rely on particular Rakudo semantics.
Browse files Browse the repository at this point in the history
  • Loading branch information
colomon committed Mar 6, 2013
1 parent 7fba797 commit bf130cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions S03-operators/assign.t
Expand Up @@ -962,9 +962,9 @@ sub l () { 1, 2 };
#?pugs todo
{
my @a //= (3);
is @a.perl, "Array.new()";
is @a, "";
my @b ||= (3);
is @b.perl, "Array.new(3)";
is @b, "3";
}

# vim: ft=perl6

0 comments on commit bf130cd

Please sign in to comment.