X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/6b631f1e25533233fe8e323c7f6d657a2b1d8718..41f95466faf0cdf3aed3be70f88f0a23d17b420e:/test/system/issues_test.rb diff --git a/test/system/issues_test.rb b/test/system/issues_test.rb index 08b1acb34..4c84d44fc 100644 --- a/test/system/issues_test.rb +++ b/test/system/issues_test.rb @@ -5,7 +5,7 @@ class IssuesTest < ApplicationSystemTestCase def test_view_issues_not_logged_in visit issues_path - assert page.has_content?(I18n.t("users.login.title")) + assert page.has_content?(I18n.t("sessions.new.title")) end def test_view_issues_normal_user @@ -72,7 +72,7 @@ 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) @@ -83,7 +83,7 @@ class IssuesTest < ApplicationSystemTestCase assert page.has_content?("test comment") issue.reload - assert_equal issue.comments.first.body, "test comment" + assert_equal("test comment", issue.comments.first.body) end def test_reassign_issue