summaryrefslogtreecommitdiff
path: root/tests/syndication_tests
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/syndication_tests
parent575706331bec4bf58ce36a9540c4c61fca49025b (diff)
downloaddjango-3d0dcd7f5af378d3ab6adb303b913e6c7b2e0ee5.tar.gz
Refs #26022 -- Used context manager version of assertRaises in tests.
Diffstat (limited to 'tests/syndication_tests')
-rw-r--r--tests/syndication_tests/tests.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/syndication_tests/tests.py b/tests/syndication_tests/tests.py
index 5369320bdd..870df35bd5 100644
--- a/tests/syndication_tests/tests.py
+++ b/tests/syndication_tests/tests.py
@@ -461,9 +461,8 @@ class SyndicationFeedTest(FeedTestCase):
Test that an ImproperlyConfigured is raised if no link could be found
for the item(s).
"""
- self.assertRaises(ImproperlyConfigured,
- self.client.get,
- '/syndication/articles/')
+ with self.assertRaises(ImproperlyConfigured):
+ self.client.get('/syndication/articles/')
def test_template_feed(self):
"""