Skip to content

Commit

Permalink
single arg version of subtraction shouldn't negate
Browse files Browse the repository at this point in the history
  • Loading branch information
TimToady committed Apr 7, 2018
1 parent d78f339 commit f259c5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion S03-operators/u2212-minus.t
Expand Up @@ -10,7 +10,7 @@ plan 54;

{
is-deeply infix:<βˆ’>( ), 0, 'infix:<βˆ’>() returns zero';
is-deeply infix:<βˆ’>(42), -42, 'infix:<βˆ’>(arg) negates arg';
is-deeply infix:<βˆ’>(42), 42, 'infix:<βˆ’>(arg) does not negate arg';
is-deeply quietly { class {} βˆ’ class {} },
0, 'infix, Custom class, Custom class';
}
Expand Down

0 comments on commit f259c5e

Please sign in to comment.