diff options
| author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2013-05-19 16:23:14 +0200 |
|---|---|---|
| committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2013-05-19 16:23:14 +0200 |
| commit | b06f6c1618a64cbab9a7d09a169c75fdf0a8dda8 (patch) | |
| tree | 5599a4a099a660361732b9959aa671f4d741ce45 | |
| parent | f88700d610d69ba5b44ab7b0692f8792aab3b54b (diff) | |
Fixed test failure introduced in 1927bf7c91.
| -rw-r--r-- | tests/defaultfilters/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/defaultfilters/tests.py b/tests/defaultfilters/tests.py index f885f4fa73..0a0852cdd9 100644 --- a/tests/defaultfilters/tests.py +++ b/tests/defaultfilters/tests.py @@ -312,7 +312,7 @@ class DefaultFiltersTests(TestCase): self.assertEqual(urlize('see test[at[example.com'), 'see <a href="http://test[at[example.com" rel="nofollow">test[at[example.com</a>' ) 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>') + '[<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>') # Check urlize works with IPv4/IPv6 addresses self.assertEqual(urlize('http://192.168.0.15/api/9'), |
