mirror of
https://github.com/django/django.git
synced 2025-08-03 10:34:04 +00:00
Refs #15093 -- Fixed another get_models call missed in r16053. Thanks Luke for catching it.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16108 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
04654e554f
commit
2706fdbc87
3 changed files with 6 additions and 2 deletions
|
@ -122,4 +122,4 @@ class NotInstalledModelsTest(TestCase):
|
|||
from .not_installed.models import NotInstalledModel
|
||||
self.assertEqual(
|
||||
set(NotInstalledModel._meta.get_all_field_names()),
|
||||
set(["id", "relatedmodel"]))
|
||||
set(["id", "relatedmodel", "m2mrelatedmodel"]))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue