Skip to content

Commit

Permalink
modified
Browse files Browse the repository at this point in the history
  • Loading branch information
thangnn committed Apr 25, 2024
1 parent 91ba506 commit e13748e
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -200,10 +200,14 @@ public function test_sourceMailField($value, $context, $expected)
public static function sourceMailFieldDataProvider()
{
return [
['radio', ['data' => ['type' => 'radio']], 'radio'],
['select', ['data' => ['type' => 'select']], 'select'],
['multi_check', ['data' => ['type' => 'multi_check']], 'multi_check'],
['autozip', ['data' => ['type' => 'autozip']], 'autozip'],
['radio', ['data' => ['type' => 'radio']], true],
['', ['data' => ['type' => 'radio']], false],
['select', ['data' => ['type' => 'select']], true],
['', ['data' => ['type' => 'select']], false],
['multi_check', ['data' => ['type' => 'multi_check']], true],
['', ['data' => ['type' => 'multi_check']], false],
['autozip', ['data' => ['type' => 'autozip']], true],
['', ['data' => ['type' => 'autozip']], false],
['text', ['data' => ['type' => 'text']], true]
];
}
Expand Down

0 comments on commit e13748e

Please sign in to comment.