summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-09-05 05:49:10 -0400
committerTim Graham <timograham@gmail.com>2013-09-05 05:49:10 -0400
commitbab039d74c09bfba378b7a9b4a0a6d974e20f792 (patch)
tree7873777dde0ea74c00683e4bf3fdf573d5c3c9f6
parentebfe42d018b1268969238a5b90bfb5fe46d0d44f (diff)
Fixed #21041 -- Removed a duplicate form in tests.
Thanks tuxcanfly.
-rw-r--r--tests/model_forms/tests.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/model_forms/tests.py b/tests/model_forms/tests.py
index 12f7dfcfa0..6e23a0b676 100644
--- a/tests/model_forms/tests.py
+++ b/tests/model_forms/tests.py
@@ -113,12 +113,6 @@ class ArticleForm(forms.ModelForm):
fields = '__all__'
-class ArticleForm(forms.ModelForm):
- class Meta:
- model = Article
- fields = '__all__'
-
-
class PartialArticleForm(forms.ModelForm):
class Meta:
model = Article