summaryrefslogtreecommitdiff
path: root/modules/field_ui/field_ui.test
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-06-27 18:05:54 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-06-27 18:05:54 +0000
commit4771540eea0f559851bd6f4244a5c6b8db4d93be (patch)
treef94bfaaeae49eb215b7c819049bdbb343fa22b4f /modules/field_ui/field_ui.test
parent15fe37a76b5c2ecda669e16a03f644ed14b9d0a3 (diff)
downloadbrdo-4771540eea0f559851bd6f4244a5c6b8db4d93be.tar.gz
brdo-4771540eea0f559851bd6f4244a5c6b8db4d93be.tar.bz2
#838040 by justinrandell, azriprajwala: Fixed notices thrown when adding a stock field to a stock content type.
Diffstat (limited to 'modules/field_ui/field_ui.test')
-rw-r--r--modules/field_ui/field_ui.test5
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/field_ui/field_ui.test b/modules/field_ui/field_ui.test
index 4a82c7a2e..5baaa341a 100644
--- a/modules/field_ui/field_ui.test
+++ b/modules/field_ui/field_ui.test
@@ -34,7 +34,8 @@ class FieldUITestCase extends DrupalWebTestCase {
// Create random field name.
$this->field_label = $this->randomName(8);
- $this->field_name = 'field_' . strtolower($this->randomName(8));
+ $this->field_name_input = strtolower($this->randomName(8));
+ $this->field_name = 'field_'. $this->field_name_input;
}
/**
@@ -85,7 +86,7 @@ class FieldUITestCase extends DrupalWebTestCase {
// Create a test field.
$edit = array(
'_add_new_field[label]' => $this->field_label,
- '_add_new_field[field_name]' => $this->field_name,
+ '_add_new_field[field_name]' => $this->field_name_input,
);
$this->fieldUIAddNewField('admin/structure/types/manage/' . $this->hyphen_type, $edit);