comparison core/modules/field/tests/src/Kernel/TestItemWithDependenciesTest.php @ 17:129ea1e6d783

Update, including to Drupal core 8.6.10
author Chris Cannam
date Thu, 28 Feb 2019 13:21:36 +0000
parents 4c8ae668cc8c
children
comparison
equal deleted inserted replaced
16:c2387f117808 17:129ea1e6d783
46 // Validate that the field configuration entity has the expected 46 // Validate that the field configuration entity has the expected
47 // dependencies. 47 // dependencies.
48 $this->assertEqual([ 48 $this->assertEqual([
49 'content' => ['node:article:uuid'], 49 'content' => ['node:article:uuid'],
50 'config' => ['field.storage.entity_test.field_test'], 50 'config' => ['field.storage.entity_test.field_test'],
51 'module' => ['entity_test', 'field_test', 'test_module'] 51 'module' => ['entity_test', 'field_test', 'test_module'],
52 ], $field->getDependencies()); 52 ], $field->getDependencies());
53 } 53 }
54 54
55 } 55 }