From aa8d76b423ec29e095d6acdb6ddb8a7b84f3a526 Mon Sep 17 00:00:00 2001 From: thangnn Date: Tue, 23 Apr 2024 09:37:15 +0700 Subject: [PATCH] modifed --- .../tests/TestCase/Model/Table/MailFieldsTableTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/bc-mail/tests/TestCase/Model/Table/MailFieldsTableTest.php b/plugins/bc-mail/tests/TestCase/Model/Table/MailFieldsTableTest.php index 3f170fb7c7..4676bb3bfa 100755 --- a/plugins/bc-mail/tests/TestCase/Model/Table/MailFieldsTableTest.php +++ b/plugins/bc-mail/tests/TestCase/Model/Table/MailFieldsTableTest.php @@ -201,9 +201,9 @@ public static function sourceMailFieldDataProvider() { return [ ['radio', ['data' => ['type' => 'radio']], 'radio'], - ['select', ['data' => ['type' => 'radio']], 'select'], - ['multi_check', ['data' => ['type' => 'radio']], 'multi_check'], - ['autozip', ['data' => ['type' => 'radio']], 'autozip'], + ['select', ['data' => ['type' => 'select']], 'select'], + ['multi_check', ['data' => ['type' => 'multi_check']], 'multi_check'], + ['autozip', ['data' => ['type' => 'autozip']], 'autozip'], ['text', ['data' => ['type' => 'text']], true] ]; }