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/blog | |
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/blog')
-rw-r--r-- | modules/blog/blog.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/blog/blog.test b/modules/blog/blog.test index a59a63cf7..bed45db63 100644 --- a/modules/blog/blog.test +++ b/modules/blog/blog.test @@ -8,9 +8,9 @@ class BlogTestCase extends DrupalWebTestCase { public static function getInfo() { return array( - 'name' => t('Blog functionality'), - 'description' => t('Create, view, edit, delete, and change blog entries and verify its consistency in the database.'), - 'group' => t('Blog'), + 'name' => 'Blog functionality', + 'description' => 'Create, view, edit, delete, and change blog entries and verify its consistency in the database.', + 'group' => 'Blog', ); } |