diff options
Diffstat (limited to 'modules/field_ui/field_ui.test')
-rw-r--r-- | modules/field_ui/field_ui.test | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/field_ui/field_ui.test b/modules/field_ui/field_ui.test index e67fc2bb7..77f79ce33 100644 --- a/modules/field_ui/field_ui.test +++ b/modules/field_ui/field_ui.test @@ -1,9 +1,8 @@ <?php -// $Id$ /** * @file - * Unit test file for fields in core UI. + * Tests for field_ui.module. */ /** @@ -389,7 +388,7 @@ class FieldUIManageFieldsTestCase extends FieldUITestCase { 'bundle' => $this->type, 'entity_type' => 'node', 'label' => t('Hidden field'), - 'widget_type' => 'test_field_widget', + 'widget' => array('type' => 'test_field_widget'), ); field_create_instance($instance); $this->assertTrue(field_read_instance('node', $field_name, $this->type), t('An instance of the field %field was created programmatically.', array('%field' => $field_name))); |