X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/06122fc0900cb2d58d3401cfab9aa0c521eef374..4492e94a45ae5d140d12b4a086f7c85abfb7ee8e:/test/system/issues_test.rb diff --git a/test/system/issues_test.rb b/test/system/issues_test.rb index ebf1d272a..55e8b1b26 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 @@ -58,7 +58,7 @@ class IssuesTest < ApplicationSystemTestCase # User doesn't exist visit issues_path - fill_in "search_by_user", :with => "Nonexistant User" + fill_in "search_by_user", :with => "Nonexistent User" click_on "Search" assert page.has_content?(I18n.t("issues.index.user_not_found")) assert page.has_content?(I18n.t("issues.index.issues_not_found")) @@ -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