diff --git a/tests/http_utils/tests.py b/tests/http_utils/tests.py
index 6e26134..9105e64 100644
a
|
b
|
class HttpUtilTests(TestCase):
|
59 | 59 | conditional_content_removal(req, res) |
60 | 60 | self.assertEqual(b''.join(res), b'') |
61 | 61 | |
62 | | |
63 | 62 | # Strip content for HEAD requests. |
64 | 63 | req.method = 'HEAD' |
65 | 64 | |
diff --git a/tests/i18n/tests.py b/tests/i18n/tests.py
index dc6c2ea..fec519a 100644
a
|
b
|
class TranslationTests(TransRealMixin, TestCase):
|
262 | 262 | self.assertRaises(TemplateSyntaxError, Template, '{% load i18n %}{% blocktrans context %}{% endblocktrans %}') |
263 | 263 | self.assertRaises(TemplateSyntaxError, Template, '{% load i18n %}{% blocktrans count number=2 context %}{{ number }} super result{% plural %}{{ number }} super results{% endblocktrans %}') |
264 | 264 | |
265 | | |
266 | 265 | def test_string_concat(self): |
267 | 266 | """ |
268 | 267 | six.text_type(string_concat(...)) should not raise a TypeError - #4796 |