diff options
Diffstat (limited to 'modules/field/field.test')
-rw-r--r-- | modules/field/field.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/field/field.test b/modules/field/field.test index adf9c06bf..f54ad5842 100644 --- a/modules/field/field.test +++ b/modules/field/field.test @@ -949,7 +949,7 @@ class FieldTestCase extends DrupalWebTestCase { } catch (FieldException $e) { $this->pass(t('Cannot create a field with no type.')); } - + // Check that field name is required. try { $field_definition = array('type' => 'test_field'); @@ -958,7 +958,7 @@ class FieldTestCase extends DrupalWebTestCase { } catch (FieldException $e) { $this->pass(t('Cannot create an unnamed field.')); } - + $field_definition = array( 'field_name' => drupal_strtolower($this->randomName()), 'type' => 'test_field', |