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 1a678d2 commit 7c7ee28Copy full SHA for 7c7ee28
exercises/04-Multiply-Two-Values/test.py
@@ -15,12 +15,12 @@ def test_variable_exists():
15
except ImportError:
16
raise ImportError("The variable 'variables_are_cool' should exist on app.py")
17
18
-@pytest.mark.it('Variables_are_cool value should be like 2345 * 7323 ')
+@pytest.mark.it('The value of variables_are_cool should be 2345 * 7323')
19
def test_use_variable_name():
20
result = app.variables_are_cool == 17172435
21
assert result == True
22
23
-@pytest.mark.it('Print on the console the variables_are_cool value ')
+@pytest.mark.it('Print on the console the value of variables_are_cool')
24
def test_for_file_output(capsys):
25
captured = buffer.getvalue()
26
assert '17172435\n' in captured
0 commit comments