From 90374c77c4470a8771968606d50dc1f957cc9332 Mon Sep 17 00:00:00 2001 From: webchick <webchick@24967.no-reply.drupal.org> Date: Sun, 4 May 2014 00:09:51 -0700 Subject: [PATCH] Commenting test to explain what's happening. --- .../lib/Drupal/node/Tests/NodeTypeRenameConfigImportTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeTypeRenameConfigImportTest.php b/core/modules/node/lib/Drupal/node/Tests/NodeTypeRenameConfigImportTest.php index 5a189abb464c..2bb230eb0f2b 100644 --- a/core/modules/node/lib/Drupal/node/Tests/NodeTypeRenameConfigImportTest.php +++ b/core/modules/node/lib/Drupal/node/Tests/NodeTypeRenameConfigImportTest.php @@ -108,6 +108,8 @@ public function testConfigurationRename() { $old_id = ConfigEntityStorage::getIDFromConfigName($names['old_name'], $entity_type->getConfigPrefix()); $new_id = ConfigEntityStorage::getIDFromConfigName($names['new_name'], $entity_type->getConfigPrefix()); + // Because table columns can be on multiple lines, need to assert a regex + // pattern rather than normal text. $id_key = $entity_type->getKey('id'); $text = "$id_key: $old_id"; $this->assertTextPattern('/\-\s+' . preg_quote($text, '/') . '/', "'-$text' found."); -- GitLab