Ticket #11241: assertFormError.diff

File assertFormError.diff, 857 bytes (added by Seth Buntin, 15 years ago)
  • django/test/testcases.py

     
    395395                                  " contain the field '%s'" %
    396396                                      (form, i, field))
    397397                else:
    398                     non_field_errors = context[form].non_field_errors()
     398                    try:
     399                        non_field_errors = context[form].non_form_errors()
     400                    except Exception, e:
     401                        non_field_errors = context[form].non_field_errors()
    399402                    self.failUnless(err in non_field_errors,
    400403                        "The form '%s' in context %d does not contain the"
    401404                        " non-field error '%s' (actual errors: %s)" %
Back to Top