Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
adjust some exceptions
  • Loading branch information
TimToady committed Sep 27, 2015
1 parent a2e9472 commit 450b919
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion S02-literals/radix.t
Expand Up @@ -212,7 +212,7 @@ is(

# L<S02/Exponentials/"not clear whether the exponentiator should be 10 or the radix">
throws-like { EVAL '0b1.1e10' },
X::Syntax::Confused,
X::Obsolete,
'Ambiguous, illegal syntax doesn\'t work';

# L<S02/Exponentials/"and this makes it explicit">
Expand Down
2 changes: 1 addition & 1 deletion S32-exceptions/misc.t
Expand Up @@ -605,7 +605,7 @@ throws-like { $*an_undeclared_dynvar = 42 }, X::Dynamic::NotFound;

# RT #114014
{
throws-like { EVAL q[ ord.Cool ] }, X::Comp::Group,
throws-like { EVAL q[ ord.Cool ] }, Exception,
'adequate error message when calling bare "ord"';
}

Expand Down

0 comments on commit 450b919

Please sign in to comment.