diff --git a/S02-lexical-conventions/comments.t b/S02-lexical-conventions/comments.t index 0e182a8236..617db6b7ed 100644 --- a/S02-lexical-conventions/comments.t +++ b/S02-lexical-conventions/comments.t @@ -72,7 +72,7 @@ plan 50; X::Comp, # no exception type yet "no spaces allowed between '#`' and '\{'"; throws-like { EVAL "3 * #`\n 2" }, - X::Syntax::Confused, + X::Syntax::Comment::Embedded, "no spaces allowed between '#`' and '<'"; } diff --git a/S32-exceptions/misc2.t b/S32-exceptions/misc2.t index 2acae69705..c4599b05ec 100644 --- a/S32-exceptions/misc2.t +++ b/S32-exceptions/misc2.t @@ -181,7 +181,7 @@ throws-like 'sub f(*@a, $b?) { }', X::Parameter::WrongOrder, misplaced => 'optional positional', after => 'variadic'; -#?rakudo todo 'parsing regression RT #124679' +# https://github.com/Raku/old-issue-tracker/issues/3960 { throws-like '#`', X::Syntax::Comment::Embedded; }