Skip to content

Commit bf130cd

Browse files
committed
Fix new tests to not rely on particular Rakudo semantics.
1 parent 7fba797 commit bf130cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

S03-operators/assign.t

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -962,9 +962,9 @@ sub l () { 1, 2 };
962962
#?pugs todo
963963
{
964964
my @a //= (3);
965-
is @a.perl, "Array.new()";
965+
is @a, "";
966966
my @b ||= (3);
967-
is @b.perl, "Array.new(3)";
967+
is @b, "3";
968968
}
969969

970970
# vim: ft=perl6

0 commit comments

Comments
 (0)