Kaydet (Commit) 17a0a666 authored tarafından Kevan Swanberg's avatar Kevan Swanberg Kaydeden (comit) Tim Graham

Refs #26796 -- Fixed ManyToManyField's limit_choices_to warning without a through model.

üst d7a09726
......@@ -1228,7 +1228,8 @@ class ManyToManyField(RelatedField):
id='fields.W341',
)
)
if self.remote_field.limit_choices_to and self.remote_field.through:
if (self.remote_field.limit_choices_to and self.remote_field.through and
not self.remote_field.through._meta.auto_created):
warnings.append(
checks.Warning(
'limit_choices_to has no effect on ManyToManyField '
......
......@@ -176,6 +176,15 @@ class RelativeFieldTests(SimpleTestCase):
field = Model._meta.get_field('m2m')
self.assertEqual(field.check(from_model=Model), [])
def test_many_to_many_with_limit_choices_auto_created_no_warning(self):
class Model(models.Model):
name = models.CharField(max_length=20)
class ModelM2M(models.Model):
m2m = models.ManyToManyField(Model, limit_choices_to={'name': 'test_name'})
self.assertEqual(ModelM2M.check(), [])
def test_many_to_many_with_useless_options(self):
class Model(models.Model):
name = models.CharField(max_length=20)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment