Skip to content

Commit e53d219

Browse files
committed
Unfudge tests for RT #131300
1 parent dfffc0d commit e53d219

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

β€ŽS02-types/set.tβ€Ž

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ subtest '.hash does not cause keys to be stringified' => {
507507
}
508508

509509
# RT #131300
510-
subtest 'set ops do not hang with Setty/Baggy/Mixie type objects' => {
510+
subtest 'set ops do not hang with Setty/Baggy/Mixy type objects' => {
511511
my @ops := Β«
512512
∈ (elem) βˆ‰ !(elem) βˆ‹ (cont) ∌ !(cont) βŠ† (<=) ⊈ !(<=)
513513
βŠ‚ (<) βŠ„ !(<) βŠ‡ (>=) βŠ‰ !(>=) βŠƒ (>) βŠ… !(>)
@@ -517,13 +517,9 @@ subtest 'set ops do not hang with Setty/Baggy/Mixie type objects' => {
517517
my @types := Set, SetHash, Bag, BagHash, Mix, MixHash;
518518
plan @ops Γ— @types;
519519

520-
my %SKIPS := set «∩ (&) ⊍ (.) βˆ– (-)Β»;
521-
522520
for @types -> $type {
523521
for @ops {
524-
%SKIPS{$_}
525-
?? skip "$type.perl(): $_ op hangs or is broken RT#131300"
526-
!! eval-lives-ok "\$ = 1 $_ $type.perl()", "$type.perl() $_";
522+
eval-lives-ok "\$ = 1 $_ $type.perl()", "$type.perl() $_";
527523
}
528524
}
529525
}

0 commit comments

Comments
Β (0)