You are here

protected function EntityTestComputedFieldNormalizerTest::getExpectedUnauthorizedAccessMessage in Drupal 9

Return the expected error message.

Parameters

string $method: The HTTP method (GET, POST, PATCH, DELETE).

Return value

string The error string.

Overrides EntityTestResourceTestBase::getExpectedUnauthorizedAccessMessage

File

core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestComputedFieldNormalizerTest.php, line 37

Class

EntityTestComputedFieldNormalizerTest
Test normalization of computed field.

Namespace

Drupal\Tests\entity_test\Functional\Rest

Code

protected function getExpectedUnauthorizedAccessMessage($method) {
  if ($this
    ->config('rest.settings')
    ->get('bc_entity_resource_permissions')) {
    return parent::getExpectedUnauthorizedAccessMessage($method);
  }
  return "The 'administer entity_test content' permission is required.";
}