diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-12-13 09:04:55 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-12-13 09:04:55 +0000 |
commit | a542d8b716b050d35bef3f367fb925b027bce409 (patch) | |
tree | feac4518565f59aa951bd803d831d702e63fb119 | |
parent | 3dd7a193ae91dba9c47391b112113614600aa000 (diff) | |
download | brdo-a542d8b716b050d35bef3f367fb925b027bce409.tar.gz brdo-a542d8b716b050d35bef3f367fb925b027bce409.tar.bz2 |
#658358 by yched: Fix capitalization.
-rw-r--r-- | modules/field/modules/list/list.test | 2 | ||||
-rw-r--r-- | modules/field/modules/options/options.test | 2 | ||||
-rw-r--r-- | modules/field/modules/text/text.test | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/modules/field/modules/list/list.test b/modules/field/modules/list/list.test index a954fde92..d53a0fd05 100644 --- a/modules/field/modules/list/list.test +++ b/modules/field/modules/list/list.test @@ -6,7 +6,7 @@ class ListFieldTestCase extends DrupalWebTestCase { return array( 'name' => 'List field', 'description' => "Test the List field type.", - 'group' => 'Field Types' + 'group' => 'Field types' ); } diff --git a/modules/field/modules/options/options.test b/modules/field/modules/options/options.test index 5abee73f3..46d29b782 100644 --- a/modules/field/modules/options/options.test +++ b/modules/field/modules/options/options.test @@ -6,7 +6,7 @@ class OptionsWidgetsTestCase extends DrupalWebTestCase { return array( 'name' => 'Options widgets', 'description' => "Test the Options widgets.", - 'group' => 'Field Types' + 'group' => 'Field types' ); } diff --git a/modules/field/modules/text/text.test b/modules/field/modules/text/text.test index 3fb419f14..3636c2a8d 100644 --- a/modules/field/modules/text/text.test +++ b/modules/field/modules/text/text.test @@ -8,9 +8,9 @@ class TextFieldTestCase extends DrupalWebTestCase { public static function getInfo() { return array( - 'name' => 'Text Field', + 'name' => 'Text field', 'description' => "Test the creation of text fields.", - 'group' => 'Field Types' + 'group' => 'Field types' ); } @@ -224,7 +224,7 @@ class TextSummaryTestCase extends DrupalWebTestCase { return array( 'name' => 'Text summary', 'description' => 'Test text_summary() with different strings and lengths.', - 'group' => 'Field Types', + 'group' => 'Field types', ); } |