Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b4e411f

Browse files
committed
Fix typecasting docstrings (issue trekhleb#1).
1 parent 5ab4750 commit b4e411f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎src/data_types/test_type_casting.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def test_type_casting_to_integer():
2929

3030

3131
def test_type_casting_to_float():
32-
"""Type casting to integer"""
32+
"""Type casting to float"""
3333

3434
assert float(1) == 1.0
3535
assert float(2.8) == 2.8
@@ -38,7 +38,7 @@ def test_type_casting_to_float():
3838

3939

4040
def test_type_casting_to_string():
41-
"""Type casting to integer"""
41+
"""Type casting to string"""
4242

4343
assert str("s1") == 's1'
4444
assert str(2) == '2'

0 commit comments

Comments
 (0)