Skip to content

Commit c7bcc26

Browse files
committed
Coverage 4.0a6 changed the quotes in the HTML.
1 parent bdf1720 commit c7bcc26

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/test_html.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ def test_simple(self):
1515

1616
self.run_django_coverage()
1717
self.cov.html_report()
18-
print(os.getcwd())
19-
print(os.listdir("htmlcov"))
2018
with open("htmlcov/templates_test_simple_html.html") as fhtml:
2119
html = fhtml.read()
22-
self.assertIn("<span class='txt'>Simple &#169; 2015</span>", html)
20+
self.assertIn('<span class="txt">Simple &#169; 2015</span>', html)

0 commit comments

Comments
 (0)