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:
Carl Meyer 2011-04-27 17:51:43 +00:00
parent 04654e554f
commit 2706fdbc87
3 changed files with 6 additions and 2 deletions

View file

@ -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"]))