updates test model definition due to RelationField changes

This commit is contained in:
Anton Martyniuk 2014-06-29 16:30:58 +02:00
parent d413ce5d1a
commit 2f73e3f704

View File

@ -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):