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