mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
MNT Fix unit test (#1321)
This commit is contained in:
parent
9de2039c24
commit
6eb29d35bd
@ -17,7 +17,7 @@ class UserFormsOptionSetFieldTest extends SapphireTest
|
||||
$radio->Required = true;
|
||||
$radio->CustomErrorMessage = 'My custom error message with \'single\' and "double" quotes';
|
||||
$userFormsOptionSetField = $radio->getFormField();
|
||||
$html = $userFormsOptionSetField->renderWith(UserFormsOptionSetField::class)->getValue();
|
||||
$html = $userFormsOptionSetField->setTemplate(UserFormsOptionSetField::class)->Field()->getValue();
|
||||
$attributesHTML = 'data-rule-required="true" data-msg-required="My custom error message with 'single' and "double" quotes"';
|
||||
$this->assertTrue(strpos($html ?? '', $attributesHTML ?? '') > 0);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user