diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-09-20 17:40:42 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-09-20 17:40:42 +0000 |
commit | 5c7375669d4d0c781067e539836d96fda8fa81d1 (patch) | |
tree | abee82130de39eb162cbf51ad338fbf8524250c8 /modules/taxonomy | |
parent | ffb8421230e301e8390a291111c8bd525ff0e5c4 (diff) | |
download | brdo-5c7375669d4d0c781067e539836d96fda8fa81d1.tar.gz brdo-5c7375669d4d0c781067e539836d96fda8fa81d1.tar.bz2 |
- Patch #582758 by c960657: remove t() calls from getInfo() functions.
Diffstat (limited to 'modules/taxonomy')
-rw-r--r-- | modules/taxonomy/taxonomy.test | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/taxonomy/taxonomy.test b/modules/taxonomy/taxonomy.test index dc3a4733d..16114c26d 100644 --- a/modules/taxonomy/taxonomy.test +++ b/modules/taxonomy/taxonomy.test @@ -382,7 +382,7 @@ class TaxonomyTermTestCase extends TaxonomyWebTestCase { return array( 'name' => 'Taxonomy term functions and forms.', 'description' => 'Test load, save and delete for taxonomy terms.', - 'group' => 'Taxonomy' + 'group' => 'Taxonomy', ); } @@ -663,7 +663,7 @@ class TaxonomyHooksTestCase extends TaxonomyWebTestCase { return array( 'name' => 'Taxonomy term hooks', 'description' => 'Hooks for taxonomy term load/save/delete.', - 'group' => 'Taxonomy' + 'group' => 'Taxonomy', ); } @@ -714,9 +714,9 @@ class TaxonomyTermFieldTestCase extends TaxonomyWebTestCase { public static function getInfo() { return array( - 'name' => t('Taxonomy term field'), - 'description' => t('Test the creation of term fields.'), - 'group' => t('Taxonomy') + 'name' => 'Taxonomy term field', + 'description' => 'Test the creation of term fields.', + 'group' => 'Taxonomy', ); } |