summaryrefslogtreecommitdiff
path: root/tests/model_forms/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/model_forms/models.py')
-rw-r--r--tests/model_forms/models.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/model_forms/models.py b/tests/model_forms/models.py
index f873cfea97..3675e080fa 100644
--- a/tests/model_forms/models.py
+++ b/tests/model_forms/models.py
@@ -218,14 +218,6 @@ except ImportError:
test_images = False
-@python_2_unicode_compatible
-class CommaSeparatedInteger(models.Model):
- field = models.CommaSeparatedIntegerField(max_length=20)
-
- def __str__(self):
- return self.field
-
-
class Homepage(models.Model):
url = models.URLField()