Skip to content

Commit

Permalink
Update a test to use join, not nqp::join.
Browse files Browse the repository at this point in the history
  • Loading branch information
jnthn committed Jan 31, 2013
1 parent c4434db commit 55631fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/nqp/57-construction.t
Expand Up @@ -12,5 +12,5 @@ class A is Parent {
}

my $x := A.bless(foo => [1, 2, 3], bar => 'BARBAR');
ok(nqp::join('|', $x.foo) eq '1|2|3', '.new() initializes child class attribute');
ok(join('|', $x.foo) eq '1|2|3', '.new() initializes child class attribute');
ok($x.bar eq 'BARBAR', '.new() initializes parent class attribute');

0 comments on commit 55631fa

Please sign in to comment.