1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00

Fixed #12640 -- Corrected a regression in test suite construction order introduced by #12255. Also updated the docs to reflect what the test code has always done. Thanks to Ramiro Morales for the report and patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@12261 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee
2010-01-19 01:14:02 +00:00
parent 9aba6f807e
commit e2d094b8fb
3 changed files with 9 additions and 9 deletions

View File

@@ -37,7 +37,7 @@ __test__ = {'API_TESTS': """
>>> a.sites.count()
1
# Regression for #12248 - Models can exist in the test package, too
# Regression for #12245 - Models can exist in the test package, too
>>> ad = Advertisment(customer="Lawrence Journal-World")
>>> ad.save()