Browse Source

Fixed a regression introduced in 9f7a01ef2bed8c0395a970286e8f87fd7d344b3b.

Florian Apolloner 12 năm trước cách đây
mục cha
commit
da85c8cf32
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      tests/view_tests/tests/test_i18n.py

+ 2 - 1
tests/view_tests/tests/test_i18n.py

@@ -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')