diff --git a/tests/model_forms/test_modelchoicefield.py b/tests/model_forms/test_modelchoicefield.py index 0591c425fe..cecc727267 100644 --- a/tests/model_forms/test_modelchoicefield.py +++ b/tests/model_forms/test_modelchoicefield.py @@ -275,7 +275,7 @@ class ModelChoiceFieldTests(TestCase): class CustomCheckboxSelectMultiple(CheckboxSelectMultiple): def create_option(self, name, value, label, selected, index, subindex=None, attrs=None): - option = super().create_option(name, value, label, selected, index, subindex=None, attrs=None) + option = super().create_option(name, value, label, selected, index, subindex, attrs) # Modify the HTML based on the object being rendered. c = value.obj option['attrs']['data-slug'] = c.slug