summaryrefslogtreecommitdiff
path: root/modules/field_ui
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2011-09-30 12:52:55 -0700
committerwebchick <webchick@24967.no-reply.drupal.org>2011-09-30 12:52:55 -0700
commitdbc2d7c27c54fc68503e9dbfa9b79fe5a271298e (patch)
tree54d8e9e6a75c77ff3b493c3af31cd5a03ae5c230 /modules/field_ui
parentf84ea30ff0f730a6e07bd8ef7337743ab79b7257 (diff)
downloadbrdo-dbc2d7c27c54fc68503e9dbfa9b79fe5a271298e.tar.gz
brdo-dbc2d7c27c54fc68503e9dbfa9b79fe5a271298e.tar.bz2
Issue #1294284 by Chi: Code style fix for field_ui().test.
Diffstat (limited to 'modules/field_ui')
-rw-r--r--modules/field_ui/field_ui.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/field_ui/field_ui.test b/modules/field_ui/field_ui.test
index 9ff6c1720..b852a6a6d 100644
--- a/modules/field_ui/field_ui.test
+++ b/modules/field_ui/field_ui.test
@@ -26,7 +26,7 @@ class FieldUITestCase extends DrupalWebTestCase {
$this->drupalLogin($admin_user);
// Create content type, with underscores.
- $type_name = strtolower($this->randomName(8)) . '_' .'test';
+ $type_name = strtolower($this->randomName(8)) . '_test';
$type = $this->drupalCreateContentType(array('name' => $type_name, 'type' => $type_name));
$this->type = $type->type;
// Store a valid URL name, with hyphens instead of underscores.
@@ -343,7 +343,7 @@ class FieldUIManageFieldsTestCase extends FieldUITestCase {
$this->fieldUIAddNewField($bundle_path1, $edit1);
// Create an additional node type.
- $type_name2 = strtolower($this->randomName(8)) . '_' .'test';
+ $type_name2 = strtolower($this->randomName(8)) . '_test';
$type2 = $this->drupalCreateContentType(array('name' => $type_name2, 'type' => $type_name2));
$type_name2 = $type2->type;
$hyphen_type2 = str_replace('_', '-', $type_name2);