summaryrefslogtreecommitdiff
path: root/modules/simpletest/tests
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-11-15 13:01:11 +0000
committerDries Buytaert <dries@buytaert.net>2008-11-15 13:01:11 +0000
commit15671f471b5097fd20c5951a9c835de9bb05fc5b (patch)
treeb3b22b4f670da5c6880cadb593eae285bf623995 /modules/simpletest/tests
parent97fdc491917f6f12d734cb13bf2101cfc12096fd (diff)
downloadbrdo-15671f471b5097fd20c5951a9c835de9bb05fc5b.tar.gz
brdo-15671f471b5097fd20c5951a9c835de9bb05fc5b.tar.bz2
- Patch #332123 by webchick, lilou: remove t() function from schema descriptions.
Diffstat (limited to 'modules/simpletest/tests')
-rw-r--r--modules/simpletest/tests/taxonomy_test.install8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/simpletest/tests/taxonomy_test.install b/modules/simpletest/tests/taxonomy_test.install
index 770fda6d5..693101dd1 100644
--- a/modules/simpletest/tests/taxonomy_test.install
+++ b/modules/simpletest/tests/taxonomy_test.install
@@ -6,26 +6,26 @@
*/
function taxonomy_test_schema() {
$schema['term_antonym'] = array(
- 'description' => t('Stores term antonyms.'),
+ 'description' => 'Stores term antonyms.',
'fields' => array(
'taid' => array(
'type' => 'serial',
'not null' => TRUE,
- 'description' => t('Primary Key: Unique term antonym ID.'),
+ 'description' => 'Primary Key: Unique term antonym ID.',
),
'tid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
- 'description' => t('The {term_data}.tid of the term.'),
+ 'description' => 'The {term_data}.tid of the term.',
),
'name' => array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
- 'description' => t('The name of the antonym.'),
+ 'description' => 'The name of the antonym.',
),
),
'indexes' => array(