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/field/field.test | |
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/field/field.test')
-rw-r--r-- | modules/field/field.test | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/modules/field/field.test b/modules/field/field.test index eead0f76d..b4f116373 100644 --- a/modules/field/field.test +++ b/modules/field/field.test @@ -15,9 +15,9 @@ class FieldAttachTestCase extends DrupalWebTestCase { public static function getInfo() { return array( - 'name' => t('Field attach tests'), - 'description' => t("Test Field Attach API functions."), - 'group' => t('Field') + 'name' => 'Field attach tests', + 'description' => "Test Field Attach API functions.", + 'group' => 'Field' ); } @@ -813,9 +813,9 @@ class FieldInfoTestCase extends DrupalWebTestCase { public static function getInfo() { return array( - 'name' => t('Field info tests'), - 'description' => t("Get information about existing fields, instances and bundles."), - 'group' => t('Field') + 'name' => 'Field info tests', + 'description' => "Get information about existing fields, instances and bundles.", + 'group' => 'Field' ); } @@ -918,9 +918,9 @@ class FieldInfoTestCase extends DrupalWebTestCase { class FieldFormTestCase extends DrupalWebTestCase { public static function getInfo() { return array( - 'name' => t('Field form tests'), - 'description' => t("Test Field form handling."), - 'group' => t('Field') + 'name' => 'Field form tests', + 'description' => "Test Field form handling.", + 'group' => 'Field' ); } @@ -1207,9 +1207,9 @@ class FieldFormTestCase extends DrupalWebTestCase { class FieldCrudTestCase extends DrupalWebTestCase { public static function getInfo() { return array( - 'name' => t('Field CRUD tests'), - 'description' => t("Create / read /update a field."), - 'group' => t('Field') + 'name' => 'Field CRUD tests', + 'description' => "Create / read /update a field.", + 'group' => 'Field' ); } @@ -1426,9 +1426,9 @@ class FieldInstanceTestCase extends DrupalWebTestCase { public static function getInfo() { return array( - 'name' => t('Field instance tests'), - 'description' => t("Create field entities by attaching fields to entities."), - 'group' => t('Field') + 'name' => 'Field instance tests', + 'description' => "Create field entities by attaching fields to entities.", + 'group' => 'Field' ); } |