diff --git a/core/modules/views/tests/src/Entity/ViewTest.php b/core/modules/views/tests/src/Entity/ViewTest.php index 520c6a2..6bfdd5b 100644 --- a/core/modules/views/tests/src/Entity/ViewTest.php +++ b/core/modules/views/tests/src/Entity/ViewTest.php @@ -50,6 +50,7 @@ public function testCalculateDependencies($values, $deps) { } public function calculateDependenciesProvider(){ + $handler['display']['default']['provider'] = 'block'; $handler['display']['default']['display_options']['fields']['example']['dependencies'] = array(); $handler['display']['default']['display_options']['fields']['example2']['dependencies']['module'] = array('views', 'field'); $handler['display']['default']['display_options']['fields']['example3']['dependencies']['module'] = array('views', 'image'); @@ -60,7 +61,7 @@ public function calculateDependenciesProvider(){ return array( array(array(), array('node', 'views')), - array($handler, array('field', 'image', 'node', 'views')), + array($handler, array('block', 'field', 'image', 'node', 'views')), array($plugin, array('field', 'image', 'node', 'views')), ); }