diff options
Diffstat (limited to 'tests/model_forms/models.py')
| -rw-r--r-- | tests/model_forms/models.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/tests/model_forms/models.py b/tests/model_forms/models.py index 1a2102f898..4e9ed2b1e4 100644 --- a/tests/model_forms/models.py +++ b/tests/model_forms/models.py @@ -411,9 +411,14 @@ class StumpJoke(models.Model): Character, models.CASCADE, limit_choices_to=today_callable_dict, - related_name="+", + related_name='jokes', ) - has_fooled_today = models.ManyToManyField(Character, limit_choices_to=today_callable_q, related_name="+") + has_fooled_today = models.ManyToManyField( + Character, + limit_choices_to=today_callable_q, + related_name='jokes_today', + ) + funny = models.BooleanField(default=False) # Model for #13776 |
