diff options
| author | Arthur Jovart <arthur@jovart.com> | 2021-04-14 14:50:01 +0200 |
|---|---|---|
| committer | Carlton Gibson <carlton.gibson@noumenal.es> | 2021-04-14 16:50:47 +0200 |
| commit | 08c60cce3b13f6e60d7588206da2d3c71228f378 (patch) | |
| tree | 9fdfa5be28b19f45f9c5771dd5baac3384976cb6 /tests/sitemaps_tests/test_http.py | |
| parent | 23fa29f6a6659e0f600d216de6bcb79e7f6818c9 (diff) | |
Fixed #32648 -- Fixed VariableDoesNotExist rendering sitemaps template.
Diffstat (limited to 'tests/sitemaps_tests/test_http.py')
| -rw-r--r-- | tests/sitemaps_tests/test_http.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/sitemaps_tests/test_http.py b/tests/sitemaps_tests/test_http.py index b546c87fe6..fadf88eb60 100644 --- a/tests/sitemaps_tests/test_http.py +++ b/tests/sitemaps_tests/test_http.py @@ -255,9 +255,11 @@ class HTTPSitemapTests(SitemapTestsBase): @override_settings(LANGUAGES=(('en', 'English'), ('pt', 'Portuguese'))) def test_simple_i18n_sitemap_index(self): """ - A simple i18n sitemap index can be rendered. + A simple i18n sitemap index can be rendered, without logging variable + lookup errors. """ - response = self.client.get('/simple/i18n.xml') + with self.assertNoLogs('django.template', 'DEBUG'): + response = self.client.get('/simple/i18n.xml') expected_content = """<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml"> <url><loc>{0}/en/i18n/testmodel/{1}/</loc><changefreq>never</changefreq><priority>0.5</priority></url><url><loc>{0}/pt/i18n/testmodel/{1}/</loc><changefreq>never</changefreq><priority>0.5</priority></url> |
