diff --git a/core/modules/node/tests/modules/node_access_test/node_access_test.module b/core/modules/node/tests/modules/node_access_test/node_access_test.module index 8f94b0de5f19d1d8f8d67e1c5908e5b18bcd66e6..f1ae04f0bfc938f4dfedc518cdc4f2b3a0cf0e66 100644 --- a/core/modules/node/tests/modules/node_access_test/node_access_test.module +++ b/core/modules/node/tests/modules/node_access_test/node_access_test.module @@ -88,7 +88,6 @@ function node_access_test_node_access_records(NodeInterface $node) { 'grant_view' => 1, 'grant_update' => 0, 'grant_delete' => 0, - 'priority' => 0, ]; $grants[] = [ 'realm' => 'node_access_test', @@ -96,7 +95,6 @@ function node_access_test_node_access_records(NodeInterface $node) { 'grant_view' => 1, 'grant_update' => 0, 'grant_delete' => 0, - 'priority' => 0, ]; // For the author realm, the group ID is equivalent to a user ID, which // means there are many groups of just 1 user. @@ -106,7 +104,6 @@ function node_access_test_node_access_records(NodeInterface $node) { 'grant_view' => 1, 'grant_update' => 1, 'grant_delete' => 1, - 'priority' => 0, ]; } diff --git a/core/modules/node/tests/modules/node_access_test_language/node_access_test_language.module b/core/modules/node/tests/modules/node_access_test_language/node_access_test_language.module index 5a873ab9b5d5995292cb88a3c22a04d1b623789b..fec0ddb855fa61d1ede48ed875636376781eee41 100644 --- a/core/modules/node/tests/modules/node_access_test_language/node_access_test_language.module +++ b/core/modules/node/tests/modules/node_access_test_language/node_access_test_language.module @@ -36,7 +36,6 @@ function node_access_test_language_node_access_records(NodeInterface $node) { 'grant_view' => empty($translation->field_private->value) ? 1 : 0, 'grant_update' => 0, 'grant_delete' => 0, - 'priority' => 0, 'langcode' => $langcode, ]; } diff --git a/core/modules/node/tests/modules/node_test/node_test.module b/core/modules/node/tests/modules/node_test/node_test.module index f5636cb0615f21df284c350e5af5f22cde178c00..c0f02ee1247d4ea130e7ee3b2ee12a9df2576908 100644 --- a/core/modules/node/tests/modules/node_test/node_test.module +++ b/core/modules/node/tests/modules/node_test/node_test.module @@ -83,7 +83,6 @@ function node_test_node_access_records(NodeInterface $node) { 'grant_view' => 1, 'grant_update' => 0, 'grant_delete' => 0, - 'priority' => 0, ]; } elseif ($node->getType() == 'page') { @@ -94,7 +93,6 @@ function node_test_node_access_records(NodeInterface $node) { 'grant_view' => 1, 'grant_update' => 0, 'grant_delete' => 0, - 'priority' => 0, ]; } return $grants;