Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Loose fudge for RT #125026
  • Loading branch information
usev6 committed Oct 23, 2015
1 parent 690dbe4 commit c470227
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions S05-modifier/counted-match.t
Expand Up @@ -64,12 +64,12 @@ my $data = "f fo foo fooo foooo fooooo foooooo";
is @match, <foo fooo foooo fooooo foooooo>, 'nth(infinite range) matched correctly';
}

#?rakudo skip 'hangs RT #125026'
#?rakudo todo 'RT #125026'
#?niecza skip 'hangs'
{
@match = $data.match(/fo+/, :nth(2, 4 ... *)).list;
my @match = $data.match(/fo+/, :nth(2, 4 ... *)).list;
is +@match, 3, 'nth(infinite series) is ok';
is @match, <foo foooo foooooo>, 'nth(infinite series) matched correctly';
is @match, <foo foooo foooooo>, 'nth(infinite sequence) matched correctly';
}


Expand Down

0 comments on commit c470227

Please sign in to comment.