summaryrefslogtreecommitdiff
path: root/modules/comment
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-07-13 21:51:42 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-07-13 21:51:42 +0000
commit735e1d904ff44d6072c1d19edcd12cfc6ef6b3a6 (patch)
treea1ad04877c8efe0b752e299059a424c13de69c3f /modules/comment
parentbeadf384f1cd680fa18e7a12a634a3fb7646ffe6 (diff)
downloadbrdo-735e1d904ff44d6072c1d19edcd12cfc6ef6b3a6.tar.gz
brdo-735e1d904ff44d6072c1d19edcd12cfc6ef6b3a6.tar.bz2
#500866 by boombatower: Remove t() from getInfo in tests.
Diffstat (limited to 'modules/comment')
-rw-r--r--modules/comment/comment.test36
1 files changed, 18 insertions, 18 deletions
diff --git a/modules/comment/comment.test b/modules/comment/comment.test
index 9873f5b20..e346298b1 100644
--- a/modules/comment/comment.test
+++ b/modules/comment/comment.test
@@ -233,9 +233,9 @@ class CommentHelperCase extends DrupalWebTestCase {
class CommentInterfaceTest extends CommentHelperCase {
public static function getInfo() {
return array(
- 'name' => t('Comment interface'),
- 'description' => t('Test comment user interfaces.'),
- 'group' => t('Comment'),
+ 'name' => 'Comment interface',
+ 'description' => 'Test comment user interfaces.',
+ 'group' => 'Comment',
);
}
@@ -364,9 +364,9 @@ class CommentInterfaceTest extends CommentHelperCase {
class CommentAnonymous extends CommentHelperCase {
public static function getInfo() {
return array(
- 'name' => t('Anonymous comments'),
- 'description' => t('Test anonymous comments.'),
- 'group' => t('Comment'),
+ 'name' => 'Anonymous comments',
+ 'description' => 'Test anonymous comments.',
+ 'group' => 'Comment',
);
}
@@ -472,9 +472,9 @@ class CommentPagerTest extends CommentHelperCase {
public static function getInfo() {
return array(
- 'name' => t('Comment paging settings'),
- 'description' => t('Test paging of comments and their settings.'),
- 'group' => t('Comment'),
+ 'name' => 'Comment paging settings',
+ 'description' => 'Test paging of comments and their settings.',
+ 'group' => 'Comment',
);
}
@@ -555,9 +555,9 @@ class CommentPagerTest extends CommentHelperCase {
class CommentApprovalTest extends CommentHelperCase {
public static function getInfo() {
return array(
- 'name' => t('Comment approval'),
- 'description' => t('Test comment approval functionality.'),
- 'group' => t('Comment'),
+ 'name' => 'Comment approval',
+ 'description' => 'Test comment approval functionality.',
+ 'group' => 'Comment',
);
}
@@ -637,9 +637,9 @@ class CommentApprovalTest extends CommentHelperCase {
class CommentBlockFunctionalTest extends CommentHelperCase {
public static function getInfo() {
return array(
- 'name' => t('Comment blocks'),
- 'description' => t('Test comment block functionality.'),
- 'group' => t('Comment'),
+ 'name' => 'Comment blocks',
+ 'description' => 'Test comment block functionality.',
+ 'group' => 'Comment',
);
}
@@ -724,9 +724,9 @@ class CommentBlockFunctionalTest extends CommentHelperCase {
class CommentRSSUnitTest extends CommentHelperCase {
public static function getInfo() {
return array(
- 'name' => t('Comment RSS'),
- 'description' => t('Test comments as part of an RSS feed.'),
- 'group' => t('Comment'),
+ 'name' => 'Comment RSS',
+ 'description' => 'Test comments as part of an RSS feed.',
+ 'group' => 'Comment',
);
}