We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c0212ab + dcd00db commit 0be5441Copy full SHA for 0be5441
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