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 921abdd commit 95d6272Copy full SHA for 95d6272
exercises/006.1-square_value_of_number/test.py
@@ -13,11 +13,11 @@ def test_function_return_type(capsys, app):
13
result = app.square(6)
14
assert type(result) == type(1)
15
16
-@pytest.mark.it('The function should return the square of the given number.')
+@pytest.mark.it('The function should return the square of the given number')
17
def test_for_file_output(capsys, app):
18
assert app.square(6) == 6*6
19
20
-@pytest.mark.it('The function should return the square of the given number. Testing with 47.')
+@pytest.mark.it('The function should return the square of the given number. Testing with 47')
21
22
assert app.square(47) == 47*47
23
0 commit comments