From 06fb20a2d460f56e67f3441ccbfc51538fbb133a Mon Sep 17 00:00:00 2001 From: Lenka Segura Date: Sep 28 2018 20:13:24 +0000 Subject: Fix test_pagure_flask_ui_issues_templates Fixes #3757 Related to PR #3774 --- diff --git a/tests/test_pagure_flask_ui_issues_templates.py b/tests/test_pagure_flask_ui_issues_templates.py index 3f1ea4e..7de8358 100644 --- a/tests/test_pagure_flask_ui_issues_templates.py +++ b/tests/test_pagure_flask_ui_issues_templates.py @@ -175,7 +175,7 @@ class PagureFlaskIssuesTemplatetests(tests.Modeltests): 'default', output_text) self.assertIn( - 'placeholder="Enter your comment here" tabindex=1 required>' + 'placeholder="Enter your comment here" tabindex=2 required>' 'Report your issue', output_text) def test_new_issue_w_specific_template(self): @@ -202,7 +202,7 @@ class PagureFlaskIssuesTemplatetests(tests.Modeltests): 'default', output_text) self.assertIn( - 'placeholder="Enter your comment here" tabindex=1 required>' + 'placeholder="Enter your comment here" tabindex=2 required>' 'Bid for 2018\n############', output_text) def test_get_ticket_template_no_csrf(self):