From a03c85225ff79db42319fda4dfa6e65d316b6c03 Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Wed, 30 Sep 2020 09:10:36 +0100 Subject: [PATCH] Update test_templatetags.py --- tests/test_templatetags.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/test_templatetags.py b/tests/test_templatetags.py index cdf10ab1e..4b84f6647 100644 --- a/tests/test_templatetags.py +++ b/tests/test_templatetags.py @@ -290,9 +290,6 @@ class URLizerTests(TestCase): For all items in dict test assert that the value is urlized key """ for original, urlized in data.items(): - print('====') - print(repr(urlize(original, nofollow=False))) - print(repr(urlized)) assert urlize(original, nofollow=False) == urlized def test_json_with_url(self):