.../lib/Drupal/contextual/Tests/ContextualDynamicContextTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/modules/contextual/lib/Drupal/contextual/Tests/ContextualDynamicContextTest.php b/core/modules/contextual/lib/Drupal/contextual/Tests/ContextualDynamicContextTest.php index 42d1266..02bc997 100644 --- a/core/modules/contextual/lib/Drupal/contextual/Tests/ContextualDynamicContextTest.php +++ b/core/modules/contextual/lib/Drupal/contextual/Tests/ContextualDynamicContextTest.php @@ -61,9 +61,9 @@ function testDifferentPermissions() { // Now, on the front page, all article nodes should have contextual links // placeholders, as should the view that contains them. $ids = array( - 'node:node=' . $node1->id() . ':', - 'node:node=' . $node2->id() . ':', - 'node:node=' . $node3->id() . ':', + 'node:node=' . $node1->id() . ':changed=' . $node1->getChangedTime(), + 'node:node=' . $node2->id() . ':changed=' . $node2->getChangedTime(), + 'node:node=' . $node3->id() . ':changed=' . $node3->getChangedTime(), 'views_ui_edit:view=frontpage:location=page&name=frontpage&display_id=page_1', );