diff options
author | webchick <webchick@24967.no-reply.drupal.org> | 2013-10-11 09:53:49 -0700 |
---|---|---|
committer | webchick <webchick@24967.no-reply.drupal.org> | 2013-10-11 09:53:49 -0700 |
commit | d453e34e35b53d03570d547d1d66c7286f4f10df (patch) | |
tree | d1cc396634484baa8ca90897ef45c50fdab8de53 | |
parent | 612b52c77fbdfddc984aebb2fdea47b981811704 (diff) | |
download | drupal-d453e34e35b53d03570d547d1d66c7286f4f10df.tar.gz drupal-d453e34e35b53d03570d547d1d66c7286f4f10df.zip |
Issue #2025451 by amateescu, Berdir | Xano: Fixed Drupal\entity_reference()\Tests\EntityReferenceAdminTest fails on PHP 5.4.9 and libxml 2.9.0.
-rw-r--r-- | core/modules/entity_reference/lib/Drupal/entity_reference/Tests/EntityReferenceAdminTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/Tests/EntityReferenceAdminTest.php b/core/modules/entity_reference/lib/Drupal/entity_reference/Tests/EntityReferenceAdminTest.php index acef71edc14e..7914840b88a9 100644 --- a/core/modules/entity_reference/lib/Drupal/entity_reference/Tests/EntityReferenceAdminTest.php +++ b/core/modules/entity_reference/lib/Drupal/entity_reference/Tests/EntityReferenceAdminTest.php @@ -106,6 +106,6 @@ class EntityReferenceAdminTest extends WebTestBase { ), t('Save settings')); // Check that the field appears in the overview form. - $this->assertFieldByXPath('//table[@id="field-overview"]//td[1]', 'Test label', 'Field was created and appears in the overview page.'); + $this->assertFieldByXPath('//table[@id="field-overview"]//tr[@id="field-test"]/td[1]', 'Test label', 'Field was created and appears in the overview page.'); } } |