Fixed bad formatted string. Fixes #1334

pull/1368/head
Karl Hobley 2015-06-03 14:52:45 +01:00
rodzic 2fc58033b7
commit 8a55446d64
2 zmienionych plików z 2 dodań i 6 usunięć

Wyświetl plik

@ -46,10 +46,8 @@ class WagtailImageField(ImageField):
) )
self.error_messages['file_too_large'] = _( self.error_messages['file_too_large'] = _(
"This file is too big (%%(max_upload_size)s). Maximum filesize %s." "This file is too big (%%s). Maximum filesize %s."
) % { ) % max_upload_size_text
'max_upload_size': max_upload_size_text,
}
def check_image_file_format(self, f): def check_image_file_format(self, f):
# Check file extension # Check file extension

Wyświetl plik

@ -1,5 +1,4 @@
import json import json
import unittest
from django.test import TestCase, override_settings from django.test import TestCase, override_settings
from django.utils.http import urlquote from django.utils.http import urlquote
@ -96,7 +95,6 @@ class TestImageAddView(TestCase, WagtailTestUtils):
# The form should have an error # The form should have an error
self.assertFormError(response, 'form', 'file', "This field is required.") self.assertFormError(response, 'form', 'file', "This field is required.")
@unittest.expectedFailure
@override_settings(WAGTAILIMAGES_MAX_UPLOAD_SIZE=1) @override_settings(WAGTAILIMAGES_MAX_UPLOAD_SIZE=1)
def test_add_too_large_file(self): def test_add_too_large_file(self):
response = self.post({ response = self.post({