summaryrefslogtreecommitdiff
path: root/tests/forms_tests/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/forms_tests/models.py')
-rw-r--r--tests/forms_tests/models.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/forms_tests/models.py b/tests/forms_tests/models.py
index fa63d08fd1..327fd7802c 100644
--- a/tests/forms_tests/models.py
+++ b/tests/forms_tests/models.py
@@ -130,12 +130,5 @@ class FileModel(models.Model):
file = models.FileField(storage=temp_storage, upload_to='tests')
-class Group(models.Model):
- name = models.CharField(max_length=10)
-
- def __str__(self):
- return '%s' % self.name
-
-
class Article(models.Model):
content = models.TextField()