diff --git a/tests/defaultfilters/tests.py b/tests/defaultfilters/tests.py
index 21734fa..f27b731 100644
a
|
b
|
class DefaultFiltersTests(TestCase):
|
320 | 320 | self.assertEqual(urlize('http://[2001:db8:cafe::2]/api/9'), |
321 | 321 | '<a href="http://[2001:db8:cafe::2]/api/9" rel="nofollow">http://[2001:db8:cafe::2]/api/9</a>') |
322 | 322 | |
| 323 | # Check urlize works with does not raise a ValueError anymore |
| 324 | self.assertEqual(urlize('[http://168.192.0.1](http://168.192.0.1)'), u'[<a href="http://168.192.0.1](http://168.192.0.1)" rel="nofollow">http://168.192.0.1](http://168.192.0.1)</a>') |
| 325 | |
323 | 326 | def test_wordcount(self): |
324 | 327 | self.assertEqual(wordcount(''), 0) |
325 | 328 | self.assertEqual(wordcount('oneword'), 1) |