diff --git a/app/notifiers/activity_notifier.rb b/app/notifiers/activity_notifier.rb index 10acaa518e7..0c54de1ba5b 100644 --- a/app/notifiers/activity_notifier.rb +++ b/app/notifiers/activity_notifier.rb @@ -282,7 +282,7 @@ def product_update(params = {}) receiver = params[:receiver] notification( - body: "#{product.user.login_name}さんの「#{product.practice.title}」の提出物が更新されました", + body: "#{product.user.login_name}さんの「#{product.practice.title}」の提出物が更新されました。", kind: :product_update, receiver:, sender: product.sender, diff --git a/test/system/notification/products_test.rb b/test/system/notification/products_test.rb index 1253746bf72..4ea5cd566cc 100644 --- a/test/system/notification/products_test.rb +++ b/test/system/notification/products_test.rb @@ -41,7 +41,7 @@ class Notification::ProductsTest < ApplicationSystemTestCase visit_with_auth '/notifications', 'komagata' within first('.card-list-item.is-unread') do - assert_text "kimuraさんの「#{product.practice.title}」の提出物が更新されました" + assert_text "kimuraさんの「#{product.practice.title}」の提出物が更新されました。" end end @@ -64,7 +64,7 @@ class Notification::ProductsTest < ApplicationSystemTestCase visit_with_auth '/notifications', 'komagata' within first('.card-list-item.is-unread') do - assert_text "hajimeさんの「#{product.practice.title}」の提出物が更新されました" + assert_text "hajimeさんの「#{product.practice.title}」の提出物が更新されました。" end end