summaryrefslogtreecommitdiff
path: root/tests/properties
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/properties
parent575706331bec4bf58ce36a9540c4c61fca49025b (diff)
Refs #26022 -- Used context manager version of assertRaises in tests.
Diffstat (limited to 'tests/properties')
-rw-r--r--tests/properties/tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/properties/tests.py b/tests/properties/tests.py
index 06e30e7b1f..175bf0eb83 100644
--- a/tests/properties/tests.py
+++ b/tests/properties/tests.py
@@ -16,7 +16,8 @@ class PropertyTests(TestCase):
def test_setter(self):
# The "full_name" property hasn't provided a "set" method.
- self.assertRaises(AttributeError, setattr, self.a, 'full_name', 'Paul McCartney')
+ with self.assertRaises(AttributeError):
+ setattr(self.a, 'full_name', 'Paul McCartney')
# And cannot be used to initialize the class.
with self.assertRaisesMessage(TypeError, "'full_name' is an invalid keyword argument"):