From c667421fa3a7ac25e4f6bfefcc185dc9f37d555f Mon Sep 17 00:00:00 2001 From: Zoffix Znet Date: Mon, 7 Nov 2016 13:36:34 +0000 Subject: [PATCH] Unfudge now-passing tests Tests made passing by https://github.com/rakudo/rakudo/pull/911 RT#124529: https://rt.perl.org/Public/Bug/Display.html?id=124529 --- S03-operators/bag.t | 2 -- 1 file changed, 2 deletions(-) diff --git a/S03-operators/bag.t b/S03-operators/bag.t index c114471860..0a69aba1e1 100644 --- a/S03-operators/bag.t +++ b/S03-operators/bag.t @@ -66,8 +66,6 @@ sub symmetric-difference($a, $b) { ($a (|) $b) (-) ($b (&) $a) } -#?rakudo 8 todo "Rakudo update in progress, but not done yet RT #124529" - is showkv($s (^) $b), showkv(symmetric-difference($s, $b)), "Bag symmetric difference with Set is correct"; isa-ok ($s (^) $b), Bag, "... and it's actually a Bag"; is showkv($b (^) $s), showkv(symmetric-difference($s, $b)), "Set symmetric difference with Bag is correct";