We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2489fb2 commit 43957cdCopy full SHA for 43957cd
tests/test_openapi_utils.py
@@ -595,7 +595,10 @@ def test_choice_fields_with_error_codes():
595
596
class MultiValueForm(forms.Form):
597
split = forms.SplitDateTimeField()
598
- disabled = forms.URLField(disabled=True)
+ if django.VERSION >= (5, 0):
599
+ disabled = forms.URLField(disabled=True, assume_scheme="https")
600
+ else:
601
+ disabled = forms.URLField(disabled=True)
602
603
604
def test_multi_value_fields_with_error_codes():
0 commit comments