X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/9aed404888a03a967416468caa38d7d6e987e34a..abea45aa56c3360d7f309b9517cb7a7e3af99cc5:/test/system/messages_test.rb?ds=inline diff --git a/test/system/messages_test.rb b/test/system/messages_test.rb index 60011e4d6..b78568314 100644 --- a/test/system/messages_test.rb +++ b/test/system/messages_test.rb @@ -9,7 +9,7 @@ class MessagesTest < ApplicationSystemTestCase visit inbox_messages_path assert_text "You have 1 new message and 0 old messages" - click_button "Delete" + click_on "Delete" assert_text "You have 0 new messages and 0 old messages" end @@ -21,7 +21,7 @@ class MessagesTest < ApplicationSystemTestCase visit outbox_messages_path assert_text "You have 1 sent message" - click_button "Delete" + click_on "Delete" assert_text "You have 0 sent messages" end @@ -35,7 +35,8 @@ class MessagesTest < ApplicationSystemTestCase visit muted_messages_path assert_text "1 muted message" - click_button "Delete" - assert_text "0 muted messages" + click_on "Delete" + refute_text "1 muted message" + assert_text "You have 0 new messages and 0 old messages" end end