Update test_templatetags.py

This commit is contained in:
Tom Christie 2020-09-30 09:10:36 +01:00 committed by GitHub
parent c7ba30825a
commit a03c85225f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -290,9 +290,6 @@ class URLizerTests(TestCase):
For all items in dict test assert that the value is urlized key For all items in dict test assert that the value is urlized key
""" """
for original, urlized in data.items(): for original, urlized in data.items():
print('====')
print(repr(urlize(original, nofollow=False)))
print(repr(urlized))
assert urlize(original, nofollow=False) == urlized assert urlize(original, nofollow=False) == urlized
def test_json_with_url(self): def test_json_with_url(self):