diff --git a/plugins/bc-blog/tests/TestCase/Service/BlogCommentsServiceTest.php b/plugins/bc-blog/tests/TestCase/Service/BlogCommentsServiceTest.php index 367a9585eb..502a61d2d1 100755 --- a/plugins/bc-blog/tests/TestCase/Service/BlogCommentsServiceTest.php +++ b/plugins/bc-blog/tests/TestCase/Service/BlogCommentsServiceTest.php @@ -274,9 +274,6 @@ public function testAdd() ); BlogPostFactory::make(['id' => 1, 'blog_content_id' => 1])->persist(); $data = [ - 'id' => 1, - 'no' => 1, - 'status' => 1, 'name' => 'baserCMS', ]; $result = $this->BlogCommentsService->add(1, 1, $data); @@ -291,9 +288,6 @@ public function testAdd() // null name $data = [ - 'id' => 1, - 'no' => 1, - 'status' => 1, 'name' => null, ]; $this->expectExceptionMessage("お名前を入力してください。");