summaryrefslogtreecommitdiff
path: root/tests/gis_tests/layermap
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2015-03-21 16:09:48 +0100
committerClaude Paroz <claude@2xlibre.net>2015-03-21 16:10:24 +0100
commite0cc36f615f70061e034f5ba3f4e75330f51d3ca (patch)
tree3f65e7619a16c77eb752935d68f8775b997f70e8 /tests/gis_tests/layermap
parent53c2cf1e7b3f1c9a7794fcc5c4669145f351b2fa (diff)
Removed unneeded app_label definitions in gis_tests
Diffstat (limited to 'tests/gis_tests/layermap')
-rw-r--r--tests/gis_tests/layermap/models.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/gis_tests/layermap/models.py b/tests/gis_tests/layermap/models.py
index f2c7882547..545f2fa75d 100644
--- a/tests/gis_tests/layermap/models.py
+++ b/tests/gis_tests/layermap/models.py
@@ -36,17 +36,11 @@ class City(NamedModel):
dt = models.DateField()
point = models.PointField()
- class Meta:
- app_label = 'layermap'
-
class Interstate(NamedModel):
length = models.DecimalField(max_digits=6, decimal_places=2)
path = models.LineStringField()
- class Meta:
- app_label = 'layermap'
-
# Same as `City` above, but for testing model inheritance.
class CityBase(NamedModel):