X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/d257c217405efb042b1507c3d134f3912e0e7a98..45be62391f8acdb38298bad49171257998dd4b27:/test/system/diary_entry_test.rb diff --git a/test/system/diary_entry_test.rb b/test/system/diary_entry_test.rb index 58992dafc..554b89a6d 100644 --- a/test/system/diary_entry_test.rb +++ b/test/system/diary_entry_test.rb @@ -10,7 +10,7 @@ class DiaryEntrySystemTest < ApplicationSystemTestCase sign_in_as(create(:user)) visit diary_entries_path - click_on "Send a message to the author" + click_link "Send a message to the author" assert_content "Send a new message" assert_equal "Re: #{@diary_entry.title}", page.find_field("Subject").value @@ -35,7 +35,7 @@ class DiaryEntrySystemTest < ApplicationSystemTestCase end test "deleted diary entries should not be shown to admins when the user is also deleted" do - @deleted_user = create(:user, :status => :deleted) + @deleted_user = create(:user, :deleted) @deleted_entry = create(:diary_entry, :visible => false, :user => @deleted_user) sign_in_as(create(:administrator_user))