Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
correct and unfudge tests for RT #70003
  • Loading branch information
moritz committed Oct 1, 2011
1 parent a7cc650 commit 01db9ce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions S05-match/capturing-contexts.t
Expand Up @@ -99,10 +99,10 @@ is_run( q{'aa' ~~ /(.)$1/},
}

# RT #70003
#?rakudo skip 'RT 70003'
{
is ($/.orig).rindex('a'), 1, 'rindex() works on $/.orig';
is ($/.orig).rindex('a', 2), 1, 'rindex() works on $/.orig';
'abc' ~~ /a/;
is ($/.orig).rindex('a'), 0, 'rindex() works on $/.orig';
is ($/.orig).rindex('a', 2), 0, 'rindex() works on $/.orig';
}

# RT #71362
Expand Down

0 comments on commit 01db9ce

Please sign in to comment.