Skip to content

Commit 6d5743d

Browse files
committed
[S05-capture/caps] Fix isa_ok syntax
1 parent 4e00888 commit 6d5743d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

S05-capture/caps.t

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ sub ca(@x) {
1515
ok 'a b c d' ~~ /(.*)/, 'basic sanity';
1616
ok $/.caps ~~ Positional, '$/.caps returns something Positional';
1717
#?rakudo todo 'return type of .chunks'
18-
#?niecza todo 'return type of .chunks'
19-
isa_ok $/.chunks ~~ Positional, '$/.chunks returns something Positional';
18+
isa_ok $/.chunks, Positional, '$/.chunks returns something Positional';
2019
isa_ok $/.caps.[0], Pair, '.. and the items are Pairs (caps);';
2120
isa_ok $/.chunks.[0], Pair, '.. and the items are Pairs (chunks);';
2221
isa_ok $/.caps.[0].value, Match, '.. and the values are Matches (caps);';

0 commit comments

Comments
 (0)