]> git.openstreetmap.org Git - rails.git/blobdiff - test/system/issues_test.rb
Refactor login/logout into sessions controller
[rails.git] / test / system / issues_test.rb
index ebf1d272a5015a481679a680acd959c9e398e093..4c84d44fcd68c6a7404a18fdf371350a49365448 100644 (file)
@@ -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
@@ -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