Fixed a regression introduced in 9f7a01ef2b.

This commit is contained in:
Florian Apolloner 2013-05-05 15:27:14 +02:00
parent f3b3c569e7
commit da85c8cf32
1 changed files with 2 additions and 1 deletions

View File

@ -217,5 +217,6 @@ class JavascriptI18nTests(LiveServerTestCase):
def test_escaping(self):
extended_apps = list(settings.INSTALLED_APPS) + ['view_tests']
with self.settings(INSTALLED_APPS=extended_apps):
response = self.client.get('%s%s' % (self.live_server_url, '/jsi18n_admin/'))
# Force a language via GET otherwise the gettext functions are a noop!
response = self.client.get('/jsi18n_admin/?language=de')
self.assertContains(response, '\\x04')