We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0212ab commit dcd00dbCopy full SHA for dcd00db
2 files changed
tests/__init__.py
tests/test_sample.py
@@ -5,7 +5,7 @@
5
from module_name import sample
6
7
8
-def test_main() -> None:
+def test_main():
9
"""Main test"""
10
assert sample.main()
11
@@ -18,5 +18,5 @@ def test_main() -> None:
18
(16, 256),
19
),
20
)
21
-def test_squared(value_in: int, expected: int) -> None:
+def test_squared(value_in, expected):
22
assert sample.squared(value_in) == expected
0 commit comments