We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ab4750 commit b4e411fCopy full SHA for b4e411f
src/data_types/test_type_casting.py
@@ -29,7 +29,7 @@ def test_type_casting_to_integer():
29
30
31
def test_type_casting_to_float():
32
- """Type casting to integer"""
+ """Type casting to float"""
33
34
assert float(1) == 1.0
35
assert float(2.8) == 2.8
@@ -38,7 +38,7 @@ def test_type_casting_to_float():
38
39
40
def test_type_casting_to_string():
41
+ """Type casting to string"""
42
43
assert str("s1") == 's1'
44
assert str(2) == '2'
0 commit comments