X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/75189bd17d42166871c7ffce07917fdd73dbcfa4..3666b674330ec8d14a224932a191d6121c5974e2:/test/system/issues_test.rb diff --git a/test/system/issues_test.rb b/test/system/issues_test.rb index f2421599f..ebf1d272a 100644 --- a/test/system/issues_test.rb +++ b/test/system/issues_test.rb @@ -72,13 +72,13 @@ class IssuesTest < ApplicationSystemTestCase end def test_commenting - issue = create(:issue) + issue = create(:issue, :assigned_role => "moderator") sign_in_as(create(:moderator_user)) visit issue_path(issue) fill_in :issue_comment_body, :with => "test comment" - click_on "Submit" + click_on "Add Comment" assert page.has_content?(I18n.t("issue_comments.create.comment_created")) assert page.has_content?("test comment") @@ -95,7 +95,7 @@ class IssuesTest < ApplicationSystemTestCase fill_in :issue_comment_body, :with => "reassigning to moderators" check :reassign - click_on "Submit" + click_on "Add Comment" issue.reload assert_equal "moderator", issue.assigned_role