You are here

protected function EntityFormDisplayTest::getExpectedUnauthorizedAccessMessage in JSON:API 8.2

Same name and namespace in other branches
  1. 8 tests/src/Functional/EntityFormDisplayTest.php \Drupal\Tests\jsonapi\Functional\EntityFormDisplayTest::getExpectedUnauthorizedAccessMessage()

Return the expected error message.

Parameters

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

Return value

string The error string.

Overrides ResourceTestBase::getExpectedUnauthorizedAccessMessage

File

tests/src/Functional/EntityFormDisplayTest.php, line 175

Class

EntityFormDisplayTest
JSON:API integration test for the "EntityFormDisplay" config entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function getExpectedUnauthorizedAccessMessage($method) {
  return "The 'administer node form display' permission is required.";
}