diff -u b/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 --- b/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 @@ -5,9 +5,9 @@ * Test module for testing the node access system. * * This module's functionality depends on two configuration variables: - * - node_test_node_access_all: Used in NodeQueryAlterTest to enable the + * - node_access_test.no_access_uid: Used in NodeQueryAlterTest to enable the * node_access_all grant realm. - * - node_access_test_private: When TRUE, the module controls access for nodes + * - node_access_test.private: When TRUE, the module controls access for nodes * with a 'private' property set, and inherits the default core access for * nodes without this flag. When FALSE, the module controls access for all * nodes. @@ -32,7 +32,7 @@ * the second group is added so that the interaction of multiple groups on * a given grant realm can be tested in NodeAccessPagerTest. * - node_access_all: Provides grants for the user whose user ID matches the - * 'node_test_node_access_all' configuration variable. Access control on this + * 'node_access_test.no_access_uid' configuration variable. Access control on this * realm is not provided in this module; instead, * NodeQueryAlterTest::testNodeQueryAlterOverride() manually writes a node * access record defining the access control for this realm. @@ -61,9 +61,9 @@ * Implements hook_node_access_records(). * * By default, records are written for all nodes. When the - * 'node_access_test_private' configuration variable is set to TRUE, records + * 'node_access_test.private' configuration variable is set to TRUE, records * are only written for nodes with a "private" property set, which causes the - * node module to write the default global view grant for nodes that are not + * Node module to write the default global view grant for nodes that are not * marked private. * * @see Drupal\node\Tests\NodeAccessBaseTableTest::setUp() @@ -112,7 +112,7 @@ * * Provides a 'node test view' permission. By default, all content is * restricted, and users without this permission can only view content they - * have authored. When the 'node_access_test_private' configuration variable is + * have authored. When the 'node_access_test.private' configuration variable is * TRUE, only 'private' nodes are restricted, and this permission grants access * to view private nodes. * @@ -120,7 +120,7 @@ * @see node_access_test_node_grants() */ function node_access_test_permission() { - return array('node test view' => array('title' => 'View restricted content')); + return array('node test view' => array('title' => 'View content')); } /**