Skip to content

Commit 95d6272

Browse files
authored
Update test.py
1 parent 921abdd commit 95d6272

File tree

1 file changed

+2
-2
lines changed
  • exercises/006.1-square_value_of_number

1 file changed

+2
-2
lines changed

exercises/006.1-square_value_of_number/test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ def test_function_return_type(capsys, app):
1313
result = app.square(6)
1414
assert type(result) == type(1)
1515

16-
@pytest.mark.it('The function should return the square of the given number.')
16+
@pytest.mark.it('The function should return the square of the given number')
1717
def test_for_file_output(capsys, app):
1818
assert app.square(6) == 6*6
1919

20-
@pytest.mark.it('The function should return the square of the given number. Testing with 47.')
20+
@pytest.mark.it('The function should return the square of the given number. Testing with 47')
2121
def test_for_file_output(capsys, app):
2222
assert app.square(47) == 47*47
2323

0 commit comments

Comments
 (0)