diff --git a/core/modules/node/tests/src/Kernel/NodeAccessTest.php b/core/modules/node/tests/src/Kernel/NodeAccessTest.php index a641a8b..cfca623 100644 --- a/core/modules/node/tests/src/Kernel/NodeAccessTest.php +++ b/core/modules/node/tests/src/Kernel/NodeAccessTest.php @@ -72,12 +72,17 @@ protected function setUp() { // Create user 1 who has special permissions. $this->drupalCreateUser(); - // Create a node type. + // Create the node types page and article. $this->drupalCreateContentType(array( 'type' => 'page', 'name' => 'Basic page', 'display_submitted' => FALSE, )); + $this->drupalCreateContentType(array( + 'type' => 'article', + 'name' => 'Article', + 'display_submitted' => FALSE, + )); } /**