Commit cf731a54 authored by Claude Paroz's avatar Claude Paroz
Browse files

Fixed widget parent class in generic_relations test

parent ab7f0710
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -231,7 +231,7 @@ class GenericRelationsTests(TestCase):
        tag = TaggedItem.objects.create(content_object=tailless, tag="lizard")
        self.assertEqual(tag.content_object, tailless)

class CustomWidget(forms.CharField):
class CustomWidget(forms.TextInput):
    pass

class TaggedItemForm(forms.ModelForm):