mirror of
https://gitlab.crans.org/mediatek/med.git
synced 2025-06-29 22:31:10 +02:00
Fix CI
This commit is contained in:
@ -198,7 +198,7 @@ class MediaAdminForm(ModelForm):
|
||||
from django.core.exceptions import ValidationError
|
||||
try:
|
||||
# We don't want to check a field when we enter an ISBN.
|
||||
if "isbn" not in self.request.POST \
|
||||
if "_isbn" not in self.request.POST \
|
||||
or not self.cleaned_data.get('isbn'):
|
||||
value = field.clean(value)
|
||||
self.cleaned_data[name] = value
|
||||
|
@ -47,7 +47,7 @@ class TemplateTests(TestCase):
|
||||
|
||||
def test_media_isbn_download(self):
|
||||
data = {
|
||||
'_continue': True,
|
||||
'_isbn': True,
|
||||
'isbn': "0316358525",
|
||||
}
|
||||
response = self.client.post(reverse(
|
||||
|
Reference in New Issue
Block a user