Skip to content

Commit 057257a

Browse files
author
bdauer
committed
fixup! Removed type from link and script tags
1 parent 4ce5a43 commit 057257a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/app/tests/test_webpack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def test_jinja2(self):
158158
with self.settings(**settings):
159159
request = self.factory.get('/')
160160
result = view(request)
161-
self.assertIn('<link type="text/css" href="/static/bundles/styles.css" rel="stylesheet" />', result.rendered_content)
161+
self.assertIn('<link href="/static/bundles/styles.css" rel="stylesheet" />', result.rendered_content)
162162
self.assertIn('<script src="/static/bundles/main.js" async charset="UTF-8"></script>', result.rendered_content)
163163

164164
def test_reporting_errors(self):

0 commit comments

Comments
 (0)