From bab039d74c09bfba378b7a9b4a0a6d974e20f792 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Thu, 5 Sep 2013 05:49:10 -0400 Subject: [PATCH] Fixed #21041 -- Removed a duplicate form in tests. Thanks tuxcanfly. --- tests/model_forms/tests.py | 6 ------ 1 file changed, 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