Commit 5217fc52 authored by Robert Bradshaw's avatar Robert Bradshaw

Fix test.

parent 1283615a
...@@ -156,7 +156,7 @@ def unary_operators(): ...@@ -156,7 +156,7 @@ def unary_operators():
a = int(1) a = int(1)
assert typeof(a) == "Python object", typeof(a) assert typeof(a) == "Python object", typeof(a)
b = not int(3) b = not int(3)
assert typeof(b) == "int", typeof(b) assert typeof(b) == "bint", typeof(b)
c = +int(3) c = +int(3)
assert typeof(c) == "Python object", typeof(c) assert typeof(c) == "Python object", typeof(c)
d = -int(5) d = -int(5)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment