diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-07-13 21:51:42 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-07-13 21:51:42 +0000 |
commit | 735e1d904ff44d6072c1d19edcd12cfc6ef6b3a6 (patch) | |
tree | a1ad04877c8efe0b752e299059a424c13de69c3f /modules/simpletest/tests/form.test | |
parent | beadf384f1cd680fa18e7a12a634a3fb7646ffe6 (diff) | |
download | brdo-735e1d904ff44d6072c1d19edcd12cfc6ef6b3a6.tar.gz brdo-735e1d904ff44d6072c1d19edcd12cfc6ef6b3a6.tar.bz2 |
#500866 by boombatower: Remove t() from getInfo in tests.
Diffstat (limited to 'modules/simpletest/tests/form.test')
-rw-r--r-- | modules/simpletest/tests/form.test | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/modules/simpletest/tests/form.test b/modules/simpletest/tests/form.test index 46bc67b84..6ea494c3d 100644 --- a/modules/simpletest/tests/form.test +++ b/modules/simpletest/tests/form.test @@ -10,9 +10,9 @@ class FormsTestCase extends DrupalWebTestCase { public static function getInfo() { return array( - 'name' => t('Required field validation'), - 'description' => t('Carriage returns, tabs, and spaces are not valid content for a required field.'), - 'group' => t('Form API'), + 'name' => 'Required field validation', + 'description' => 'Carriage returns, tabs, and spaces are not valid content for a required field.', + 'group' => 'Form API', ); } @@ -80,9 +80,9 @@ class FormsTestCase extends DrupalWebTestCase { class FormsTestTypeCase extends DrupalUnitTestCase { public static function getInfo() { return array( - 'name' => t('Form type-specific tests'), - 'description' => t('Test form type functions for expected behavior.'), - 'group' => t('Form API'), + 'name' => 'Form type-specific tests', + 'description' => 'Test form type functions for expected behavior.', + 'group' => 'Form API', ); } @@ -118,9 +118,9 @@ class FormsElementsTableSelectFunctionalTest extends DrupalWebTestCase { public static function getInfo() { return array( - 'name' => t('Tableselect form element type test'), - 'description' => t('Test the tableselect element for expected behavior'), - 'group' => t('Form API'), + 'name' => 'Tableselect form element type test', + 'description' => 'Test the tableselect element for expected behavior', + 'group' => 'Form API', ); } @@ -322,9 +322,9 @@ class FormsFormCleanIdFunctionalTest extends DrupalWebTestCase { public static function getInfo() { return array( - 'name' => t('form_clean_id() test'), - 'description' => t('Test the function form_clean_id() for expected behavior'), - 'group' => t('Form API'), + 'name' => 'form_clean_id() test', + 'description' => 'Test the function form_clean_id() for expected behavior', + 'group' => 'Form API', ); } @@ -352,9 +352,9 @@ class FormAPITestCase extends DrupalWebTestCase { public static function getInfo() { return array( - 'name' => t('Drupal Execute and Batch API'), - 'description' => t('Tests the compatibility of drupal_form_submit and the Batch API'), - 'group' => t('Form API'), + 'name' => 'Drupal Execute and Batch API', + 'description' => 'Tests the compatibility of drupal_form_submit and the Batch API', + 'group' => 'Form API', ); } @@ -397,9 +397,9 @@ class FormsFormStorageTestCase extends DrupalWebTestCase { public static function getInfo() { return array( - 'name' => t('Multistep form using form storage'), - 'description' => t('Tests a multistep form using form storage and makes sure validation and caching works right.'), - 'group' => t('Form API'), + 'name' => 'Multistep form using form storage', + 'description' => 'Tests a multistep form using form storage and makes sure validation and caching works right.', + 'group' => 'Form API', ); } |