X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/424b6ef1cf760c4a3e27ac1e6f612ae42a9cd493..ab3150646c539daef1a05a25245fe70c6ad8206f:/test/system/report_anonymous_note_test.rb diff --git a/test/system/report_anonymous_note_test.rb b/test/system/report_anonymous_note_test.rb index a5a15d3a0..d8f52d10f 100644 --- a/test/system/report_anonymous_note_test.rb +++ b/test/system/report_anonymous_note_test.rb @@ -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"