summaryrefslogtreecommitdiff
path: root/tests/model_forms/models.py
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-12-31 10:30:41 -0500
committerTim Graham <timograham@gmail.com>2017-01-17 20:52:02 -0500
commitbcf3532ede16407f1a701717deaed835eda3e87b (patch)
treed4b6167d5c47c42fcae8f05dd86b03adb7faa33c /tests/model_forms/models.py
parentbc3540ce2c7cc59ec39a23ed16b14cc12f485bf3 (diff)
Refs #26154 -- Removed deprecated CommaSeparatedIntegerField.
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()