diff --git a/rest_framework/tests/models.py b/rest_framework/tests/models.py index fba3f8f7c..664fe8d1a 100644 --- a/rest_framework/tests/models.py +++ b/rest_framework/tests/models.py @@ -52,7 +52,7 @@ class CallableDefaultValueModel(RESTFrameworkModel): class ManyToManyModel(RESTFrameworkModel): - rel = models.ManyToManyField(Anchor, help_text='Some help text.') + rel = models.ManyToManyField(Anchor, help_text='Some help text.', blank=True) class ReadOnlyManyToManyModel(RESTFrameworkModel):