Skip to content

Commit

Permalink
Revert "Changes to conform with fix of use of Real type object in ope…
Browse files Browse the repository at this point in the history
…rators"

This reverts commit d60f851.

See rakudo/rakudo#3051.
  • Loading branch information
AlexDaniel committed Jul 15, 2019
1 parent a178a56 commit 40098aa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions S03-operators/misc.t
Expand Up @@ -127,9 +127,9 @@ is (2 Z 3), @z, 'joining of single items';

# comparison complains if either of its arguments is undefined - RT #93978
{
CONTROL { when CX::Warn { die $_ } }
throws-like {Int < 0}, CX::Warn;
throws-like {"cat" gt Str}, CX::Warn;
throws-like {Int < 0}, Exception;
#?rakudo todo "RT #93978"
throws-like {"cat" gt Str}, Exception;
}

# unicode operators are there
Expand Down

0 comments on commit 40098aa

Please sign in to comment.