function VocabularyTest::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
- 
              core/modules/ jsonapi/ tests/ src/ Functional/ VocabularyTest.php, line 109 
Class
- VocabularyTest
- JSON:API integration test for the "vocabulary" config entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected function getExpectedUnauthorizedAccessMessage($method) {
  if ($method === 'GET') {
    return "The following permissions are required: 'access taxonomy overview' OR 'administer taxonomy'.";
  }
  return parent::getExpectedUnauthorizedAccessMessage($method);
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
