Skip to content

Commit f21a22c

Browse files
committed
working through step 7
1 parent 8a60151 commit f21a22c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

students/eowyn/session07/html-rendering/test_html_render.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -387,10 +387,8 @@ def test_li_element():
387387

388388
def test_header_element():
389389
# <h2> The text of the header </h2>
390-
# <h1> The text of the header </h1> -- what i have now
391-
392390
text = 'The text of the header'
393-
p = Header(text)
391+
p = Header(text, hlevel=2)
394392
contents = render_element(p).strip()
395393
lines = contents.split('\n')
396394
print(contents)

0 commit comments

Comments
 (0)