diff --git a/S02-types/isDEPRECATED.t b/S02-types/isDEPRECATED.t index 8d3b1f76d7..d2e11639d2 100644 --- a/S02-types/isDEPRECATED.t +++ b/S02-types/isDEPRECATED.t @@ -19,7 +19,6 @@ my $line; $line = $?LINE; a(); is $a, 1, 'was "a" really called'; - #?rakudo.jvm todo 'tracebacks in deprecations' is Deprecation.report, qq:to/TEXT/.chop.subst(/\r/, '', :g), 'right deprecation for a()'; Saw 1 call to deprecated code during execution. ================================================================================ @@ -120,7 +119,6 @@ TEXT $line = $?LINE; C.new.foo; is $C, 1, 'was "C.new.foo" really called'; - #?rakudo.jvm todo 'tracebacks in deprecations' is Deprecation.report, qq:to/TEXT/.chop.subst(/\r/, '', :g), 'right deprecation for C.new.foo'; Saw 1 call to deprecated code during execution. ================================================================================ diff --git a/S04-phasers/rvalue.t b/S04-phasers/rvalue.t index 6c66537b64..136940bf88 100644 --- a/S04-phasers/rvalue.t +++ b/S04-phasers/rvalue.t @@ -59,7 +59,6 @@ plan 16; } #?niecza todo 'block returns no value' - #?rakudo.jvm 3 todo "nigh" is $check(), 'BC', 'CHECK {} runs only once'; #?niecza todo 'block returns no value' is $check_val, 'BC', 'CHECK {} as rval is its ret val'; diff --git a/S05-mass/properties-derived.t b/S05-mass/properties-derived.t index 1f67040f91..23ff40b8cf 100644 --- a/S05-mass/properties-derived.t +++ b/S05-mass/properties-derived.t @@ -539,7 +539,7 @@ ok("\x[D7A4]\x[C99D]" ~~ m/<:Assigned>/, q$/, q ); diff --git a/S32-str/sprintf.t b/S32-str/sprintf.t index 4fa907b282..4ecfcd83ea 100644 --- a/S32-str/sprintf.t +++ b/S32-str/sprintf.t @@ -253,9 +253,7 @@ is Date.new(-13_000_000_000, 1, 1), '-13000000000-01-01 is sprintf("%.0f", 1.969), "2", '%.0f of 1.969 should be 2'; #?rakudo todo 'buggy' is sprintf("%.1f", 1.969), "2.0", '%.1f of 1.969 should be 2.0'; - #?rakudo.jvm todo 'buggy' is sprintf("%.2f", 1.969), "1.97", '%.2f of 1.969 should be 1.97'; - #?rakudo.jvm todo 'buggy' is sprintf("%.3f", 1.969), "1.969", '%.3f of 1.969 should be 1.969'; }