protected function ImageStyleResourceTestBase::getExpectedUnauthorizedAccessMessage in Drupal 9
Same name and namespace in other branches
- 8 core/modules/image/tests/src/Functional/Rest/ImageStyleResourceTestBase.php \Drupal\Tests\image\Functional\Rest\ImageStyleResourceTestBase::getExpectedUnauthorizedAccessMessage()
Return the expected error message.
Parameters
string $method: The HTTP method (GET, POST, PATCH, DELETE).
Return value
string The error string.
Overrides EntityResourceTestBase::getExpectedUnauthorizedAccessMessage
File
- core/
modules/ image/ tests/ src/ Functional/ Rest/ ImageStyleResourceTestBase.php, line 107
Class
- ImageStyleResourceTestBase
- ResourceTestBase for ImageStyle entity.
Namespace
Drupal\Tests\image\Functional\RestCode
protected function getExpectedUnauthorizedAccessMessage($method) {
return "The 'administer image styles' permission is required.";
}