Skip to content
Snippets Groups Projects
Unverified Commit e432eea9 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2999306 by longwave, chr.fritsch, alexpott: Update numbering - quick follow-up to #2949964

parent bea23d7c
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Showing
with 13 additions and 13 deletions
......@@ -211,7 +211,7 @@ function comment_update_8600() {
/**
* Set the 'owner' entity key and update the field.
*/
function comment_update_8601() {
function comment_update_8700() {
$definition_update_manager = \Drupal::entityDefinitionUpdateManager();
$entity_type = $definition_update_manager->getEntityType('comment');
$keys = $entity_type->getKeys();
......
......@@ -44,11 +44,11 @@ public function testCommentUpdate8600() {
}
/**
* Tests comment_update_8601().
* Tests comment_post_update_add_ip_address_setting().
*
* @see comment_update_8601
* @see comment_post_update_add_ip_address_setting()
*/
public function testCommentUpdate8601() {
public function testCommentPostUpdateAddIpAddressSetting() {
/** @var \Drupal\Core\Config\ConfigFactoryInterface $factory */
$factory = $this->container->get('config.factory');
......
......@@ -75,7 +75,7 @@ public function testPublishedEntityKey() {
/**
* Tests that the comment entity type has an 'owner' entity key.
*
* @see comment_update_8600()
* @see comment_update_8700()
*/
public function testOwnerEntityKey() {
// Check that the 'owner' entity key does not exist prior to the update.
......
......@@ -33,7 +33,7 @@ function content_moderation_update_8401() {
/**
* Set the 'owner' entity key and update the field.
*/
function content_moderation_update_8600() {
function content_moderation_update_8700() {
$definition_update_manager = \Drupal::entityDefinitionUpdateManager();
$entity_type = $definition_update_manager->getEntityType('content_moderation_state');
$keys = $entity_type->getKeys();
......
......@@ -25,7 +25,7 @@ protected function setDatabaseDumpFiles() {
/**
* Tests that the content moderation state entity has an 'owner' entity key.
*
* @see content_moderation_update_8600()
* @see content_moderation_update_8700()
*/
public function testOwnerEntityKey() {
// Check that the 'owner' entity key does not exist prior to the update.
......
......@@ -168,7 +168,7 @@ function file_update_8001() {
/**
* Set the 'owner' entity key and update the field.
*/
function file_update_8600() {
function file_update_8700() {
$definition_update_manager = \Drupal::entityDefinitionUpdateManager();
$entity_type = $definition_update_manager->getEntityType('file');
$keys = $entity_type->getKeys();
......
......@@ -59,7 +59,7 @@ public function testPostUpdate8001() {
/**
* Tests that the file entity type has an 'owner' entity key.
*
* @see file_update_8600()
* @see file_update_8700()
*/
public function testOwnerEntityKey() {
// Check that the 'owner' entity key does not exist prior to the update.
......
......@@ -167,7 +167,7 @@ function media_update_8600() {
/**
* Set the 'owner' entity key and update the field.
*/
function media_update_8601() {
function media_update_8700() {
$definition_update_manager = \Drupal::entityDefinitionUpdateManager();
$entity_type = $definition_update_manager->getEntityType('media');
$keys = $entity_type->getKeys();
......
......@@ -65,7 +65,7 @@ public function testOEmbedConfig() {
/**
* Tests that the media entity type has an 'owner' entity key.
*
* @see media_update_8600()
* @see media_update_8700()
*/
public function testOwnerEntityKey() {
// Check that the 'owner' entity key does not exist prior to the update.
......
......@@ -271,7 +271,7 @@ function node_update_8401() {
/**
* Set the 'owner' entity key and update the field.
*/
function node_update_8600() {
function node_update_8700() {
$definition_update_manager = \Drupal::entityDefinitionUpdateManager();
$entity_type = $definition_update_manager->getEntityType('node');
$keys = $entity_type->getKeys();
......
......@@ -68,7 +68,7 @@ public function testStatusCheckbox() {
/**
* Tests that the node entity type has an 'owner' entity key.
*
* @see node_update_8600()
* @see node_update_8700()
*/
public function testOwnerEntityKey() {
// Check that the 'owner' entity key does not exist prior to the update.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment