diff --git a/core/modules/views/src/Tests/Entity/ViewEntityDependenciesTest.php b/core/modules/views/src/Tests/Entity/ViewEntityDependenciesTest.php index f08cbca..d3c19bb 100644 --- a/core/modules/views/src/Tests/Entity/ViewEntityDependenciesTest.php +++ b/core/modules/views/src/Tests/Entity/ViewEntityDependenciesTest.php @@ -33,6 +33,16 @@ class ViewEntityDependenciesTest extends ViewUnitTestBase { public static $modules = ['node', 'comment', 'user', 'field', 'text', 'entity_reference']; /** + * {@inheritdoc} + */ + protected function setUp() { + parent::setUp(); + // Install the necessary dependencies for node type creation to work. + $this->installEntitySchema('node'); + $this->installConfig(array('field')); + } + + /** * Tests the calculateDependencies method. */ public function testCalculateDependencies() {