Skip to content

Commit 7c7ee28

Browse files
authored
Update test.py
1 parent 1a678d2 commit 7c7ee28

File tree

1 file changed

+2
-2
lines changed
  • exercises/04-Multiply-Two-Values

1 file changed

+2
-2
lines changed

exercises/04-Multiply-Two-Values/test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ def test_variable_exists():
1515
except ImportError:
1616
raise ImportError("The variable 'variables_are_cool' should exist on app.py")
1717

18-
@pytest.mark.it('Variables_are_cool value should be like 2345 * 7323 ')
18+
@pytest.mark.it('The value of variables_are_cool should be 2345 * 7323')
1919
def test_use_variable_name():
2020
result = app.variables_are_cool == 17172435
2121
assert result == True
2222

23-
@pytest.mark.it('Print on the console the variables_are_cool value ')
23+
@pytest.mark.it('Print on the console the value of variables_are_cool')
2424
def test_for_file_output(capsys):
2525
captured = buffer.getvalue()
2626
assert '17172435\n' in captured

0 commit comments

Comments
 (0)