diff --git a/integration/99problems-21-to-30.t b/integration/99problems-21-to-30.t index f2f523f553..1a687f3dae 100644 --- a/integration/99problems-21-to-30.t +++ b/integration/99problems-21-to-30.t @@ -45,9 +45,7 @@ plan 15; @rand = .pick(3); is @rand.elems, 3, 'pick() should return the correct number of items'; - #?rakudo todo 'RT #122414' - #?niecza todo 'unknown' - ok ?(all(@rand) ~~ any(@letters)), '... and they should be in the letters'; + ok ?(@rand (<=) @letters), '... and they should be in the letters'; } { @@ -80,9 +78,7 @@ plan 15; my @numbers = lotto(6, 49); is @numbers.elems, 6, 'lotto() should return the correct number of numbers'; - #?rakudo todo 'RT #122414' - #?niecza todo 'unknown' - ok ?(all(@numbers) ~~ any(1..49)), '... and they should be in the correct range'; + ok ?(@numbers (<=) (1..49)), '... and they should be in the correct range'; my %unique = map { ($_ => 1) }, @numbers; is %unique.keys.elems, 6, '... and they should all be unique numbers'; }