From 666223fa8c11ac10e670b8fd21db87e532f4af6e Mon Sep 17 00:00:00 2001 From: Sami Mazouz Date: Tue, 10 Jan 2023 13:06:16 +0100 Subject: [PATCH] test: make data providers public Signed-off-by: Sami Mazouz --- .../tests/integration/notification/NotificationSyncerTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/core/tests/integration/notification/NotificationSyncerTest.php b/framework/core/tests/integration/notification/NotificationSyncerTest.php index c61295571..cbe9287ea 100644 --- a/framework/core/tests/integration/notification/NotificationSyncerTest.php +++ b/framework/core/tests/integration/notification/NotificationSyncerTest.php @@ -113,7 +113,7 @@ class NotificationSyncerTest extends TestCase ); } - protected function visibleSubjectsProvider() + public function visibleSubjectsProvider() { return [ [Post::class, 1, BasicPostSerializer::class], @@ -121,7 +121,7 @@ class NotificationSyncerTest extends TestCase ]; } - protected function invisibleSubjectsProvider() + public function invisibleSubjectsProvider() { return [ [Post::class, 2, BasicPostSerializer::class],