mirror of
https://github.com/django-components/django-components.git
synced 2025-11-30 02:07:41 +00:00
7 lines
283 B
Python
7 lines
283 B
Python
from django.test import SimpleTestCase
|
|
|
|
|
|
class Django30CompatibleSimpleTestCase(SimpleTestCase):
|
|
def assertHTMLEqual(self, left, right):
|
|
left = left.replace(' type="text/javascript"', '')
|
|
super(Django30CompatibleSimpleTestCase, self).assertHTMLEqual(left, right)
|