Fixed tests
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
1ee2e72347
commit
348fca4dd0
|
@ -25,6 +25,7 @@ use App\Form\Enums\SpecialType;
|
||||||
* @method self min(int $min)
|
* @method self min(int $min)
|
||||||
* @method self max(int $max)
|
* @method self max(int $max)
|
||||||
* @method self allowcustom(bool $allowcustom)
|
* @method self allowcustom(bool $allowcustom)
|
||||||
|
* @method self intro(string $intro)
|
||||||
*/
|
*/
|
||||||
class FormtemplateFieldRequest extends RequestFactory
|
class FormtemplateFieldRequest extends RequestFactory
|
||||||
{
|
{
|
||||||
|
|
|
@ -42,6 +42,7 @@ class FormtemplateIndexActionTest extends TestCase
|
||||||
'for_members' => true,
|
'for_members' => true,
|
||||||
'special_type' => null,
|
'special_type' => null,
|
||||||
'hint' => '',
|
'hint' => '',
|
||||||
|
'intro' => '',
|
||||||
'options' => [],
|
'options' => [],
|
||||||
'required' => true,
|
'required' => true,
|
||||||
'allowcustom' => false,
|
'allowcustom' => false,
|
||||||
|
@ -59,6 +60,7 @@ class FormtemplateIndexActionTest extends TestCase
|
||||||
'for_members' => true,
|
'for_members' => true,
|
||||||
'special_type' => null,
|
'special_type' => null,
|
||||||
'hint' => '',
|
'hint' => '',
|
||||||
|
'intro' => '',
|
||||||
'required' => true,
|
'required' => true,
|
||||||
]
|
]
|
||||||
])
|
])
|
||||||
|
@ -74,6 +76,7 @@ class FormtemplateIndexActionTest extends TestCase
|
||||||
'for_members' => true,
|
'for_members' => true,
|
||||||
'special_type' => null,
|
'special_type' => null,
|
||||||
'hint' => '',
|
'hint' => '',
|
||||||
|
'intro' => '',
|
||||||
'rows' => 5,
|
'rows' => 5,
|
||||||
'required' => true,
|
'required' => true,
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue