X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/7441f15b4fd59735ae00a16b47cfcf7eb99260a6..e5604ce98e267cb0cec7dd27078a9e86c919eeb1:/test/system/report_diary_comment_test.rb diff --git a/test/system/report_diary_comment_test.rb b/test/system/report_diary_comment_test.rb index 356aac016..18be7e649 100644 --- a/test/system/report_diary_comment_test.rb +++ b/test/system/report_diary_comment_test.rb @@ -23,7 +23,7 @@ class ReportDiaryCommentTest < ApplicationSystemTestCase assert page.has_content? "Report" assert page.has_content? I18n.t("reports.new.disclaimer.intro") - choose I18n.t("reports.new.categories.diary_comment.spam") + choose I18n.t("reports.new.categories.diary_comment.spam_label") fill_in "report_details", :with => "This comment is spam" assert_difference "Issue.count", 1 do click_on "Create Report" @@ -32,5 +32,6 @@ class ReportDiaryCommentTest < ApplicationSystemTestCase assert page.has_content? "Your report has been registered sucessfully" assert_equal @comment, Issue.last.reportable + assert_equal "administrator", Issue.last.assigned_role end end