Skip to content

Commit d08cd26

Browse files
authored
Update test.py
1 parent eb4663b commit d08cd26

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/12-Map_a_list/test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import io, sys, pytest, os, re
22
path = os.path.dirname(os.path.abspath(__file__))+'/app.py'
33

4-
@pytest.mark.it("Convert Celsius to Fahrenheit and print to console")
4+
@pytest.mark.it("Convert celsius to fahrenheit and print to console")
55
def test_dict(capsys, app):
66
import app
77
captured = capsys.readouterr()
@@ -11,4 +11,4 @@ def test_dict(capsys, app):
1111
def test_if_loo():
1212
f = open(os.path.dirname(os.path.abspath(__file__))+'/app.py')
1313
content = f.read()
14-
assert content.find("map") > 0
14+
assert content.find("map") > 0

0 commit comments

Comments
 (0)