Commit bab039d7 authored by Tim Graham's avatar Tim Graham
Browse files

Fixed #21041 -- Removed a duplicate form in tests.

Thanks tuxcanfly.
parent ebfe42d0
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -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