Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Track &skip API change
  • Loading branch information
sorear committed Mar 1, 2011
1 parent 980923f commit 0711b24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Test.pm6
Expand Up @@ -115,7 +115,7 @@ sub eval_lives_ok($code, $why?) is export {
}
sub plan($num) is export { $*TEST-BUILDER.plan($num) }
sub done() is export { $*TEST-BUILDER.done }
sub skip($number,$reason) is export {
sub skip($reason,$number) is export {
$*TEST-BUILDER.skip($reason) for ^$number;
}

Expand Down

0 comments on commit 0711b24

Please sign in to comment.