Skip to content

Commit fe56bec

Browse files
committed
Add test for str function
1 parent f3f2427 commit fe56bec

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

integration_tests/test_builtin_str.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
def test_str_int():
22
s: str
3-
s = str_int(356)
3+
s = str(356)
44
assert s == "356"
5-
s = str_int(-567)
5+
s = str(-567)
66
assert s == "-567"
7+
assert str(4) == "4"
8+
assert str(-5) == "-5"

0 commit comments

Comments
 (0)