summaryrefslogtreecommitdiff
path: root/tests/gis_tests/layermap/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/gis_tests/layermap/tests.py')
-rw-r--r--tests/gis_tests/layermap/tests.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/gis_tests/layermap/tests.py b/tests/gis_tests/layermap/tests.py
index 1ebeeb31c6..2406533e66 100644
--- a/tests/gis_tests/layermap/tests.py
+++ b/tests/gis_tests/layermap/tests.py
@@ -319,7 +319,10 @@ class OtherRouter:
return self.db_for_read(model, **hints)
def allow_relation(self, obj1, obj2, **hints):
- return None
+ # ContentType objects are created during a post-migrate signal while
+ # performing fixture teardown using the default database alias and
+ # don't abide by the database specified by this router.
+ return True
def allow_migrate(self, db, app_label, **hints):
return True