]> git.openstreetmap.org Git - rails.git/blobdiff - test/system/report_anonymous_note_test.rb
Update system tests for report link changes
[rails.git] / test / system / report_anonymous_note_test.rb
index a5a15d3a0fb07891d9045ab58af55ef2cefd6736..d8f52d10f9baf444bde58f8f15b3170f5b925eb8 100644 (file)
@@ -6,7 +6,7 @@ class ReportAnonymousNoteTest < ApplicationSystemTestCase
     visit browse_note_path(note)
     assert page.has_content?(note.comments.first.body)
 
-    assert !page.has_content?("\u2690")
+    assert !page.has_content?(I18n.t("browse.note.report"))
   end
 
   def test_can_report_anonymous_notes
@@ -14,11 +14,11 @@ class ReportAnonymousNoteTest < ApplicationSystemTestCase
     sign_in_as(create(:user))
     visit browse_note_path(note)
 
-    click_on "\u2690"
+    click_on I18n.t("browse.note.report")
     assert page.has_content? "Report"
     assert page.has_content? I18n.t("issues.new.disclaimer.intro")
 
-    choose I18n.t("reports.categories.Note.spam")
+    choose I18n.t("reports.categories.note.spam")
     fill_in "report_details", :with => "This is spam"
     click_on "Create Report"