diff --git a/tests/regressiontests/forms/fields.py b/tests/regressiontests/forms/fields.py
index 990a9f7..053071c 100644
a
|
b
|
class FieldsTests(TestCase):
|
718 | 718 | self.assertRaisesErrorWithMessage(ValidationError, "[u'Enter a list of values.']", f.clean, 'hello') |
719 | 719 | self.assertRaisesErrorWithMessage(ValidationError, "[u'This field is required.']", f.clean, []) |
720 | 720 | self.assertRaisesErrorWithMessage(ValidationError, "[u'This field is required.']", f.clean, ()) |
| 721 | self.assertRaisesErrorWithMessage(ValidationError, "[u'This field is required.']", f.clean, frozenset([])) |
721 | 722 | self.assertRaisesErrorWithMessage(ValidationError, "[u'Select a valid choice. 3 is not one of the available choices.']", f.clean, ['3']) |
722 | 723 | |
723 | 724 | def test_multiplechoicefield_61(self): |