summaryrefslogtreecommitdiff
path: root/tests/forms_tests
diff options
context:
space:
mode:
authorBen Davis <bendavis78@gmail.com>2014-05-03 12:02:07 -0500
committerTim Graham <timograham@gmail.com>2014-05-05 20:01:15 -0400
commitdf60db0e7872796b4a48e62e9733f85c8ddf8306 (patch)
tree17c0163d9cee43823899736d168e642b21b482ee /tests/forms_tests
parent6923fdbbf1824d6e28cc1d283b48146c7f58c6ea (diff)
Fixed #22570 -- Made Form.__getitem__ KeyError more descriptive.
Diffstat (limited to 'tests/forms_tests')
-rw-r--r--tests/forms_tests/tests/test_forms.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/forms_tests/tests/test_forms.py b/tests/forms_tests/tests/test_forms.py
index 051968d14f..b8c5f28d2f 100644
--- a/tests/forms_tests/tests/test_forms.py
+++ b/tests/forms_tests/tests/test_forms.py
@@ -58,11 +58,11 @@ class FormsTestCase(TestCase):
self.assertHTMLEqual(str(p['first_name']), '<input type="text" name="first_name" value="John" id="id_first_name" />')
self.assertHTMLEqual(str(p['last_name']), '<input type="text" name="last_name" value="Lennon" id="id_last_name" />')
self.assertHTMLEqual(str(p['birthday']), '<input type="text" name="birthday" value="1940-10-9" id="id_birthday" />')
- try:
+
+ nonexistenterror = "Key u?'nonexistentfield' not found in 'Person'"
+ with self.assertRaisesRegexp(KeyError, nonexistenterror):
p['nonexistentfield']
self.fail('Attempts to access non-existent fields should fail.')
- except KeyError:
- pass
form_output = []