You are here

protected function EntityNotTranslatableTest::getChannelUserPermissions in Entity Share 8.2

Gets the permissions for the channel user.

Return value

string[] The permissions.

Overrides EntityShareClientFunctionalTestBase::getChannelUserPermissions

File

modules/entity_share_client/tests/src/Functional/EntityNotTranslatableTest.php, line 50

Class

EntityNotTranslatableTest
Test class for untranslatable entities.

Namespace

Drupal\Tests\entity_share_client\Functional

Code

protected function getChannelUserPermissions() {
  $permissions = parent::getChannelUserPermissions();
  $permissions[] = 'view test entity';
  return $permissions;
}