Update to Drupal 8.1.1. For more information, see https://www.drupal.org/node/2718713

This commit is contained in:
Pantheon Automation 2016-05-04 14:35:41 -07:00 committed by Greg Anderson
parent c0a0d5a94c
commit 9eae24d844
669 changed files with 3873 additions and 1553 deletions

View file

@ -19,7 +19,7 @@ class PathAdminTest extends PathTestBase {
protected function setUp() {
parent::setUp();
// Create test user and login.
// Create test user and log in.
$web_user = $this->drupalCreateUser(array('create page content', 'edit own page content', 'administer url aliases', 'create url aliases'));
$this->drupalLogin($web_user);
}

View file

@ -24,7 +24,7 @@ class PathAliasTest extends PathTestBase {
protected function setUp() {
parent::setUp();
// Create test user and login.
// Create test user and log in.
$web_user = $this->drupalCreateUser(array('create page content', 'edit own page content', 'administer url aliases', 'create url aliases'));
$this->drupalLogin($web_user);
}

View file

@ -38,7 +38,7 @@ class PathLanguageTest extends PathTestBase {
'edit any page content',
'translate any entity',
);
// Create and login user.
// Create and log in user.
$this->webUser = $this->drupalCreateUser($permissions);
$this->drupalLogin($this->webUser);

View file

@ -19,7 +19,7 @@ class PathLanguageUiTest extends PathTestBase {
protected function setUp() {
parent::setUp();
// Create and login user.
// Create and log in user.
$web_user = $this->drupalCreateUser(array('edit any page content', 'create page content', 'administer url aliases', 'create url aliases', 'administer languages', 'access administration pages'));
$this->drupalLogin($web_user);
@ -41,7 +41,7 @@ class PathLanguageUiTest extends PathTestBase {
$name = $this->randomMachineName(8);
$edit = array();
$edit['source'] = '/admin/config/search/path';
$edit['alias'] ='/' . $name;
$edit['alias'] = '/' . $name;
$this->drupalPostForm('admin/config/search/path/add', $edit, t('Save'));
$this->drupalGet($name);

View file

@ -19,7 +19,7 @@ class PathNodeFormTest extends PathTestBase {
protected function setUp() {
parent::setUp();
// Create test user and login.
// Create test user and log in.
$web_user = $this->drupalCreateUser(array('create page content', 'create url aliases'));
$this->drupalLogin($web_user);
}

View file

@ -28,7 +28,7 @@ class PathTaxonomyTermTest extends PathTestBase {
]);
$vocabulary->save();
// Create and login user.
// Create and log in user.
$web_user = $this->drupalCreateUser(array('administer url aliases', 'administer taxonomy', 'access administration pages'));
$this->drupalLogin($web_user);
}