diff --git a/core/modules/system/system.install b/core/modules/system/system.install index 868bb43..31feac5 100644 --- a/core/modules/system/system.install +++ b/core/modules/system/system.install @@ -1922,7 +1922,7 @@ function system_update_8045() { function system_update_8046() { $config_to_import = array( 'views.view.user_admin_people' => 'user', - 'views.view.frontpage' => 'node', + 'views.view.content' => 'node', ); $front_page = config('system.site')->get('page.front') ?: 'node'; if ($front_page == 'node') { diff --git a/core/modules/user/lib/Drupal/user/Tests/Views/BulkFormTest.php b/core/modules/user/lib/Drupal/user/Tests/Views/BulkFormTest.php index b408bd5..da9a68b 100644 --- a/core/modules/user/lib/Drupal/user/Tests/Views/BulkFormTest.php +++ b/core/modules/user/lib/Drupal/user/Tests/Views/BulkFormTest.php @@ -35,15 +35,11 @@ public static function getInfo() { public function testBulkForm() { $this->drupalLogin($this->drupalCreateUser(array('administer permissions'))); - $this->drupalGet('test-user-bulk-form'); - $elements = $this->xpath('//select[@id="edit-action"]//option'); - $this->assertIdentical(count($elements), 5, 'All user operations are found.'); - // Test submitting the page with no selection. $edit = array( 'action' => 'user_block_user_action', ); - $this->drupalPost(NULL, $edit, t('Apply')); + $this->drupalPost('test-user-bulk-form', $edit, t('Apply')); // @todo Validation errors are only shown on page refresh. $this->drupalGet('test-user-bulk-form'); $this->assertText(t('No users selected.'));