mirror of
https://github.com/django-components/django-components.git
synced 2025-11-20 06:45:32 +00:00
7 lines
285 B
Python
7 lines
285 B
Python
from django.test import SimpleTestCase
|
|
|
|
|
|
class Django111CompatibleSimpleTestCase(SimpleTestCase):
|
|
def assertHTMLEqual(self, left, right):
|
|
left = left.replace(' type="text/javascript"', '')
|
|
super(Django111CompatibleSimpleTestCase, self).assertHTMLEqual(left, right)
|