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/taxonomy/taxonomy.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/taxonomy/taxonomy.test')
-rw-r--r-- | modules/taxonomy/taxonomy.test | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/modules/taxonomy/taxonomy.test b/modules/taxonomy/taxonomy.test index b6b048ace..ed5a7a69b 100644 --- a/modules/taxonomy/taxonomy.test +++ b/modules/taxonomy/taxonomy.test @@ -46,9 +46,9 @@ class TaxonomyVocabularyFunctionalTest extends TaxonomyWebTestCase { public static function getInfo() { return array( - 'name' => t('Taxonomy vocabulary interface'), - 'description' => t('Test the taxonomy vocabulary interface.'), - 'group' => t('Taxonomy'), + 'name' => 'Taxonomy vocabulary interface', + 'description' => 'Test the taxonomy vocabulary interface.', + 'group' => 'Taxonomy', ); } @@ -188,9 +188,9 @@ class TaxonomyVocabularyUnitTest extends TaxonomyWebTestCase { public static function getInfo() { return array( - 'name' => t('Taxonomy vocabularies'), - 'description' => t('Test loading, saving and deleting vocabularies.'), - 'group' => t('Taxonomy'), + 'name' => 'Taxonomy vocabularies', + 'description' => 'Test loading, saving and deleting vocabularies.', + 'group' => 'Taxonomy', ); } @@ -308,9 +308,9 @@ class TaxonomyTermUnitTest extends TaxonomyWebTestCase { public static function getInfo() { return array( - 'name' => t('Taxonomy term unit tests'), - 'description' => t('Unit tests for taxonomy term functions.'), - 'group' => t('Taxonomy'), + 'name' => 'Taxonomy term unit tests', + 'description' => 'Unit tests for taxonomy term functions.', + 'group' => 'Taxonomy', ); } @@ -381,9 +381,9 @@ class TaxonomyTermTestCase extends TaxonomyWebTestCase { public static function getInfo() { return array( - 'name' => t('Taxonomy term functions and forms.'), - 'description' => t('Test load, save and delete for taxonomy terms.'), - 'group' => t('Taxonomy') + 'name' => 'Taxonomy term functions and forms.', + 'description' => 'Test load, save and delete for taxonomy terms.', + 'group' => 'Taxonomy' ); } @@ -618,9 +618,9 @@ class TaxonomyLoadMultipleUnitTest extends TaxonomyWebTestCase { public static function getInfo() { return array( - 'name' => t('Taxonomy term multiple loading'), - 'description' => t('Test the loading of multiple taxonomy terms at once'), - 'group' => t('Taxonomy'), + 'name' => 'Taxonomy term multiple loading', + 'description' => 'Test the loading of multiple taxonomy terms at once', + 'group' => 'Taxonomy', ); } @@ -684,9 +684,9 @@ class TaxonomyLoadMultipleUnitTest extends TaxonomyWebTestCase { class TaxonomyHooksTestCase extends TaxonomyWebTestCase { public static function getInfo() { return array( - 'name' => t('Taxonomy term hooks'), - 'description' => t('Hooks for taxonomy term load/save/delete.'), - 'group' => t('Taxonomy') + 'name' => 'Taxonomy term hooks', + 'description' => 'Hooks for taxonomy term load/save/delete.', + 'group' => 'Taxonomy' ); } |