Skip to content

Commit 641a3e3

Browse files
committed
unfudge subset isa test
1 parent ba7d5c1 commit 641a3e3

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

S02-types/subset.t

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use v6;
22
use Test;
3-
plan 48;
3+
plan 49;
44

55
=begin description
66
@@ -209,9 +209,8 @@ lives-ok { EVAL 'my class A { has $.integer where * > 0; method meth { 1 / $!int
209209
nok S-Int.isa(S-Str), 'isa subset';
210210

211211
# isa on a superset - not yet handled
212-
#?rakudo todo "RT #132073"
213-
my subset S2 of S-Int;
214-
ok S2.isa(S-Int), 'isa subset';
212+
my subset SI2 of S-Int;
213+
ok SI2.isa(S-Int), 'isa subset';
215214
}
216215

217216
# vim: ft=perl6

0 commit comments

Comments
 (0)