Fixed #20117 -- Added missing translation override to fix flatpages test.
This commit is contained in:
parent
e7514e4978
commit
6985f0c09b
|
@ -58,11 +58,12 @@ class FlatpageAdminFormTests(TestCase):
|
||||||
|
|
||||||
f = FlatpageForm(data=data)
|
f = FlatpageForm(data=data)
|
||||||
|
|
||||||
self.assertFalse(f.is_valid())
|
with translation.override('en'):
|
||||||
|
self.assertFalse(f.is_valid())
|
||||||
|
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
f.errors,
|
f.errors,
|
||||||
{'__all__': ['Flatpage with url /myflatpage1/ already exists for site example.com']})
|
{'__all__': ['Flatpage with url /myflatpage1/ already exists for site example.com']})
|
||||||
|
|
||||||
def test_flatpage_admin_form_edit(self):
|
def test_flatpage_admin_form_edit(self):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue