fix double negative

This commit is contained in:
Lindsey Heagy
2016-07-21 11:59:59 -07:00
parent 7457912d84
commit 8093288391
+1 -1
View File
@@ -52,7 +52,7 @@ class Tests(unittest.TestCase):
assert o <= -1
assert not (o > -1)
assert o >= -1
assert -(-o)*o == -o
assert -1.*(-o)*o == -o
o = Identity()
assert +o == o
assert -o == -o