From 38f28282db2a1eb6b263ebfde8a97c34eba06efc Mon Sep 17 00:00:00 2001 From: makiichikawa Date: Tue, 7 Sep 2021 22:31:25 +0900 Subject: [PATCH] =?UTF-8?q?=E8=87=AA=E5=88=86=E3=81=AE=E6=8B=85=E5=BD=93?= =?UTF-8?q?=E3=82=BF=E3=83=96=E3=81=AE=E6=95=B0=E5=AD=97=E3=82=92=E5=A4=89?= =?UTF-8?q?=E6=9B=B4=E3=81=97=E3=81=9F=E3=81=93=E3=81=A8=E3=81=AB=E4=BC=B4?= =?UTF-8?q?=E3=81=86=E3=80=81=E3=82=B7=E3=82=B9=E3=83=86=E3=83=A0=E3=83=86?= =?UTF-8?q?=E3=82=B9=E3=83=88=E3=81=AE=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/system/products_test.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/system/products_test.rb b/test/system/products_test.rb index 799bc6d37b7..3d739b26c0f 100644 --- a/test/system/products_test.rb +++ b/test/system/products_test.rb @@ -285,13 +285,14 @@ def assigned_product_count [ '担当者がいない提出物の場合、担当者になる', - '自分が担当者の場合、担当者のまま' + '自分が担当者の場合、担当者のまま', + 'タブ上の数字は未返信の数字のため、返信するとカウントされない' ].each do |comment| visit "/products/#{products(:product1).id}" post_comment(comment) visit products_not_responded_index_path - assert_equal before_comment + 1, assigned_product_count + assert_equal before_comment, assigned_product_count end end