Update to Drupal 8.1.1. For more information, see https://www.drupal.org/node/2718713
This commit is contained in:
parent
c0a0d5a94c
commit
9eae24d844
669 changed files with 3873 additions and 1553 deletions
|
@ -196,4 +196,3 @@ function config_translation_config_schema_info_alter(&$definitions) {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -121,7 +121,7 @@ class ConfigTranslationListUiTest extends WebTestBase {
|
|||
$edit = array(
|
||||
'id' => $menu_name,
|
||||
'description' => '',
|
||||
'label' => $label,
|
||||
'label' => $label,
|
||||
);
|
||||
// Create the menu by posting the form.
|
||||
$this->drupalPostForm('admin/structure/menu/add', $edit, t('Save'));
|
||||
|
@ -147,7 +147,7 @@ class ConfigTranslationListUiTest extends WebTestBase {
|
|||
// Test if the link to translate the menu is NOT on the page.
|
||||
$this->assertNoLinkByHref($translate_link);
|
||||
|
||||
// Login as Admin again otherwise the rest will fail.
|
||||
// Log in as Admin again otherwise the rest will fail.
|
||||
$this->drupalLogin($this->adminUser);
|
||||
|
||||
// Test if the link to translate actually goes to the translate page.
|
||||
|
|
|
@ -55,7 +55,7 @@ class ConfigTranslationOverviewTest extends WebTestBase {
|
|||
'access contextual links',
|
||||
'administer views',
|
||||
);
|
||||
// Create and login user.
|
||||
// Create and log in user.
|
||||
$this->drupalLogin($this->drupalCreateUser($permissions));
|
||||
|
||||
// Add languages.
|
||||
|
|
|
@ -104,7 +104,7 @@ class ConfigTranslationUiTest extends WebTestBase {
|
|||
'translate interface',
|
||||
]
|
||||
);
|
||||
// Create and login user.
|
||||
// Create and log in user.
|
||||
$this->translatorUser = $this->drupalCreateUser($translator_permissions);
|
||||
$this->adminUser = $this->drupalCreateUser($admin_permissions);
|
||||
|
||||
|
|
|
@ -42,7 +42,7 @@ class ConfigTranslationUiThemeTest extends WebTestBase {
|
|||
'administer site configuration',
|
||||
'translate configuration',
|
||||
];
|
||||
// Create and login user.
|
||||
// Create and log in user.
|
||||
$this->adminUser = $this->drupalCreateUser($admin_permissions);
|
||||
|
||||
// Add languages.
|
||||
|
|
Reference in a new issue