Skip to content

Commit

Permalink
API Rename validator classes
Browse files Browse the repository at this point in the history
  • Loading branch information
emteknetnz committed Dec 10, 2024
1 parent 1538b6f commit ee005cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"phpunit/phpunit": "^11.3",
"silverstripe/versioned": "^3",
"squizlabs/php_codesniffer": "^3",
"silverstripe/userforms": "^7",
"silverstripe/userforms": "7.x-dev",
"silverstripe/standards": "^1",
"phpstan/extension-installer": "^1.3"
},
Expand Down
4 changes: 2 additions & 2 deletions tests/EditableSpamProtectionFieldTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
use SilverStripe\Dev\SapphireTest;
use SilverStripe\Forms\FieldGroup;
use SilverStripe\Forms\Form;
use SilverStripe\Forms\RequiredFields;
use SilverStripe\Forms\Validation\RequiredFieldsValidator;
use SilverStripe\Forms\TextField;
use SilverStripe\SpamProtection\EditableSpamProtectionField;
use SilverStripe\SpamProtection\Extension\FormSpamProtectionExtension;
Expand Down Expand Up @@ -134,7 +134,7 @@ protected function getFormMock()
$formMock
->expects($this->any())
->method('getValidator')
->willReturn(new RequiredFields());
->willReturn(new RequiredFieldsValidator());

return $formMock;
}
Expand Down

0 comments on commit ee005cc

Please sign in to comment.