Update to Drupal 8.1.10. For more information, see https://www.drupal.org/project/drupal/releases/8.1.10

This commit is contained in:
Pantheon Automation 2016-09-21 10:51:55 -07:00 committed by Greg Anderson
parent 09b113657a
commit 2f563ab520
7 changed files with 151 additions and 12 deletions

View file

@ -88,6 +88,12 @@ class ConfigExportUITest extends WebTestBase {
// Check the single export form doesn't have "form-required" elements.
$this->drupalGet('admin/config/development/configuration/single/export');
$this->assertNoRaw('js-form-required form-required', 'No form required fields are found.');
// Ensure the temporary file is not available to users without the
// permission.
$this->drupalLogout();
$this->drupalGet('system/temporary', ['query' => ['file' => 'config.tar.gz']]);
$this->assertResponse(403);
}
}