Fixed #31080 -- Removed redundant type="text/javascript" attribute from <script> tags.

This commit is contained in:
Jon Dufresne 2019-12-11 00:49:54 -08:00 committed by Carlton Gibson
parent d8e2333528
commit e703b93a65
24 changed files with 137 additions and 141 deletions

View file

@ -2386,7 +2386,7 @@ class OtherModelFormTests(TestCase):
self.assertHTMLEqual(
str(f.media),
'''<link href="/some/form/css" type="text/css" media="all" rel="stylesheet">
<script type="text/javascript" src="/some/form/javascript"></script>'''
<script src="/some/form/javascript"></script>'''
)
def test_choices_type(self):