Opened 13 years ago

Closed 13 years ago

Last modified 13 years ago

#15975 closed Bug (fixed)

Test failure in BaseModelValidationTests

Reported by: Julien Phalip Owned by: nobody
Component: Uncategorized Version: 1.3
Severity: Release blocker Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Julien Phalip)

Reportedly due to the recent enabling of https://djangoproject.com:

======================================================================
FAIL: test_correct_https_url_but_nonexisting (modeltests.validation.tests.BaseModelValidationTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/Users/julien/.virtualenvs/djangotests/src/django/tests/modeltests/validation/tests.py", line 66, in test_correct_https_url_but_nonexisting
    self.assertFieldFailsValidationWithMessage(mtv.full_clean, 'url', [u'This URL appears to be a broken link.'])
  File "/Users/julien/.virtualenvs/djangotests/src/django/tests/modeltests/validation/__init__.py", line 14, in assertFieldFailsValidationWithMessage
    self.assertRaises(ValidationError, clean)
AssertionError: ValidationError not raised

Change History (3)

comment:1 by Julien Phalip, 13 years ago

Description: modified (diff)

comment:2 by Chris Beaven, 13 years ago

Resolution: fixed
Status: newclosed

In [16163]:

Fixes #15975 -- Test failure in model validation tests due to us now having https://www.djangoproject.com

comment:3 by Chris Beaven, 13 years ago

In [16164]:

[1.3.X] Fixes #15975 -- Test failure in model validation tests due to us now having https://www.djangoproject.com

Backport of r16163 from trunk

Note: See TracTickets for help on using tickets.
Back to Top