Skip to content

Commit f259c5e

Browse files
committed
single arg version of subtraction shouldn't negate
1 parent d78f339 commit f259c5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

S03-operators/u2212-minus.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plan 54;
1010

1111
{
1212
is-deeply infix:<>( ), 0, 'infix:<−>() returns zero';
13-
is-deeply infix:<>(42), -42, 'infix:<−>(arg) negates arg';
13+
is-deeply infix:<>(42), 42, 'infix:<−>(arg) does not negate arg';
1414
is-deeply quietly { class {} − class {} },
1515
0, 'infix, Custom class, Custom class';
1616
}

0 commit comments

Comments
 (0)