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/aggregator | |
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/aggregator')
-rw-r--r-- | modules/aggregator/aggregator.test | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/modules/aggregator/aggregator.test b/modules/aggregator/aggregator.test index 4abef3721..f72ae94ff 100644 --- a/modules/aggregator/aggregator.test +++ b/modules/aggregator/aggregator.test @@ -261,9 +261,9 @@ EOF; class AddFeedTestCase extends AggregatorTestCase { public static function getInfo() { return array( - 'name' => t('Add feed functionality'), - 'description' => t('Add feed test.'), - 'group' => t('Aggregator') + 'name' => 'Add feed functionality', + 'description' => 'Add feed test.', + 'group' => 'Aggregator' ); } @@ -290,9 +290,9 @@ class AddFeedTestCase extends AggregatorTestCase { class UpdateFeedTestCase extends AggregatorTestCase { public static function getInfo() { return array( - 'name' => t('Update feed functionality'), - 'description' => t('Update feed test.'), - 'group' => t('Aggregator') + 'name' => 'Update feed functionality', + 'description' => 'Update feed test.', + 'group' => 'Aggregator' ); } @@ -332,9 +332,9 @@ class UpdateFeedTestCase extends AggregatorTestCase { class RemoveFeedTestCase extends AggregatorTestCase { public static function getInfo() { return array( - 'name' => t('Remove feed functionality'), - 'description' => t('Remove feed test.'), - 'group' => t('Aggregator') + 'name' => 'Remove feed functionality', + 'description' => 'Remove feed test.', + 'group' => 'Aggregator' ); } @@ -360,9 +360,9 @@ class RemoveFeedTestCase extends AggregatorTestCase { class UpdateFeedItemTestCase extends AggregatorTestCase { public static function getInfo() { return array( - 'name' => t('Update feed item functionality'), - 'description' => t('Update feed items from a feed.'), - 'group' => t('Aggregator') + 'name' => 'Update feed item functionality', + 'description' => 'Update feed items from a feed.', + 'group' => 'Aggregator' ); } @@ -421,9 +421,9 @@ class UpdateFeedItemTestCase extends AggregatorTestCase { class RemoveFeedItemTestCase extends AggregatorTestCase { public static function getInfo() { return array( - 'name' => t('Remove feed item functionality'), - 'description' => t('Remove feed items from a feed.'), - 'group' => t('Aggregator') + 'name' => 'Remove feed item functionality', + 'description' => 'Remove feed items from a feed.', + 'group' => 'Aggregator' ); } @@ -459,9 +459,9 @@ class RemoveFeedItemTestCase extends AggregatorTestCase { class CategorizeFeedItemTestCase extends AggregatorTestCase { public static function getInfo() { return array( - 'name' => t('Categorize feed item functionality'), - 'description' => t('Test feed item categorization.'), - 'group' => t('Aggregator') + 'name' => 'Categorize feed item functionality', + 'description' => 'Test feed item categorization.', + 'group' => 'Aggregator' ); } @@ -516,9 +516,9 @@ class CategorizeFeedItemTestCase extends AggregatorTestCase { class ImportOPMLTestCase extends AggregatorTestCase { public static function getInfo() { return array( - 'name' => t('Import feeds from OPML functionality'), - 'description' => t('Test OPML import.'), - 'group' => t('Aggregator'), + 'name' => 'Import feeds from OPML functionality', + 'description' => 'Test OPML import.', + 'group' => 'Aggregator', ); } |