summaryrefslogtreecommitdiff
path: root/tests/responses
diff options
context:
space:
mode:
authorHasan <hasan.r67@gmail.com>2016-01-17 14:56:39 +0330
committerTim Graham <timograham@gmail.com>2016-01-29 12:32:18 -0500
commit3d0dcd7f5af378d3ab6adb303b913e6c7b2e0ee5 (patch)
tree0d1074cc65a72096e44a4165611fddfc5b7ef7fb /tests/responses
parent575706331bec4bf58ce36a9540c4c61fca49025b (diff)
Refs #26022 -- Used context manager version of assertRaises in tests.
Diffstat (limited to 'tests/responses')
-rw-r--r--tests/responses/tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/responses/tests.py b/tests/responses/tests.py
index 5f7a0b5e12..53e517496e 100644
--- a/tests/responses/tests.py
+++ b/tests/responses/tests.py
@@ -127,7 +127,8 @@ class HttpResponseTests(SimpleTestCase):
generator = ("{}".format(i) for i in range(10))
response = HttpResponse(content=generator)
self.assertEqual(response.content, b'0123456789')
- self.assertRaises(StopIteration, next, generator)
+ with self.assertRaises(StopIteration):
+ next(generator)
cache.set('my-response-key', response)
response = cache.get('my-response-key')