summaryrefslogtreecommitdiff
path: root/tests/apps/models.py
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2013-12-30 16:03:06 +0100
committerAymeric Augustin <aymeric.augustin@m4x.org>2013-12-30 22:11:17 +0100
commit7ed20e015335076fc98ad805eaf241f8a0d872d5 (patch)
tree2ef3dda77256843bb42dd1f192b0b65ee814d9b6 /tests/apps/models.py
parentc31d7c48139260ccb72deda9b0033db0db86e84a (diff)
Populated Apps instances immediately by default.
Diffstat (limited to 'tests/apps/models.py')
-rw-r--r--tests/apps/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/apps/models.py b/tests/apps/models.py
index a7a9b691c3..d6907eced1 100644
--- a/tests/apps/models.py
+++ b/tests/apps/models.py
@@ -6,7 +6,7 @@ from django.db import models
# We're testing app registry presence on load, so this is handy.
-new_apps = Apps()
+new_apps = Apps(['apps'])
class TotallyNormal(models.Model):