]> git.openstreetmap.org Git - rails.git/blobdiff - test/system/issues_test.rb
Merge remote-tracking branch 'upstream/pull/2983' into master
[rails.git] / test / system / issues_test.rb
index 08b1acb3460d1f7a7135d4bb0980771a2b887a15..1fdbe1373a51f43cea0f4f6d0158e09c56361c8a 100644 (file)
@@ -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