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/simpletest/tests/browser.test | |
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/simpletest/tests/browser.test')
-rw-r--r-- | modules/simpletest/tests/browser.test | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/modules/simpletest/tests/browser.test b/modules/simpletest/tests/browser.test index 1f58576ee..f22f7b838 100644 --- a/modules/simpletest/tests/browser.test +++ b/modules/simpletest/tests/browser.test @@ -13,9 +13,9 @@ class BrowserTestCase extends DrupalWebTestCase { public static function getInfo() { return array( - 'name' => t('Browser'), - 'description' => t('Test general browser functionality.'), - 'group' => t('Browser'), + 'name' => 'Browser', + 'description' => 'Test general browser functionality.', + 'group' => 'Browser', ); } @@ -50,9 +50,9 @@ class BrowserBackendTestCase extends DrupalWebTestCase { public static function getInfo() { return array( - 'name' => t('Browser - wrapper backends'), - 'description' => t('Test stream and curl backends execution of GET and POST requests.'), - 'group' => t('Browser'), + 'name' => 'Browser - wrapper backends', + 'description' => 'Test stream and curl backends execution of GET and POST requests.', + 'group' => 'Browser', ); } @@ -95,9 +95,9 @@ class BrowserPageTestCase extends DrupalWebTestCase { public static function getInfo() { return array( - 'name' => t('Browser - page'), - 'description' => t('Check "BrowserPage" class functionality.'), - 'group' => t('Browser'), + 'name' => 'Browser - page', + 'description' => 'Check "BrowserPage" class functionality.', + 'group' => 'Browser', ); } |