Browse Source

test: change h2 to h3 for form title

version-14
Summayya 3 years ago
parent
commit
cf2e783e0e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      frappe/website/doctype/web_form/test_web_form.py

+ 1
- 1
frappe/website/doctype/web_form/test_web_form.py View File

@@ -66,7 +66,7 @@ class TestWebForm(unittest.TestCase):

def test_webform_render(self):
content = get_response_content('request-data')
self.assertIn('<h2>Request Data</h2>', content)
self.assertIn('<h3>Request Data</h3>', content)
self.assertIn('data-doctype="Web Form"', content)
self.assertIn('data-path="request-data"', content)
self.assertIn('source-type="Generator"', content)

Loading…
Cancel
Save