We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6614910 commit 9834e7eCopy full SHA for 9834e7e
tests/test_integration.py
@@ -622,10 +622,10 @@ def test_basic_jinja(self):
622
623
# Click to show the template panel
624
self.selenium.find_element(By.CLASS_NAME, "TemplatesPanel").click()
625
- # This should be 2 templates rendered. See
+ # This should be 2 templates rendered, including base.html See
626
# JinjaTemplateTestCase.test_django_jinja2_parent_template_instrumented
627
self.assertIn("Templates (1 rendered)", template_panel.text)
628
- self.assertIn("base.html", template_panel.text)
+ self.assertNotIn("base.html", template_panel.text)
629
self.assertIn("jinja2/basic.jinja", template_panel.text)
630
631
@override_settings(
0 commit comments