diff options
Diffstat (limited to 'modules/field/tests')
-rw-r--r-- | modules/field/tests/field_test.entity.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/field/tests/field_test.entity.inc b/modules/field/tests/field_test.entity.inc index 8c32602ea..fb9130baf 100644 --- a/modules/field/tests/field_test.entity.inc +++ b/modules/field/tests/field_test.entity.inc @@ -23,26 +23,26 @@ function field_test_entity_info() { return array( 'test_entity' => array( 'name' => t('Test Entity'), + 'fieldable' => TRUE, + 'field cache' => FALSE, 'entity keys' => array( 'id' => 'ftid', 'revision' => 'ftvid', 'bundle' => 'fttype', ), - 'cacheable' => FALSE, 'bundles' => $bundles, - 'fieldable' => TRUE, 'view modes' => $test_entity_modes, ), // This entity type doesn't get form handling for now... 'test_cacheable_entity' => array( 'name' => t('Test Entity, cacheable'), + 'fieldable' => TRUE, + 'field cache' => TRUE, 'entity keys' => array( 'id' => 'ftid', 'revision' => 'ftvid', 'bundle' => 'fttype', ), - 'fieldable' => TRUE, - 'cacheable' => TRUE, 'bundles' => $bundles, 'view modes' => $test_entity_modes, ), |