summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-11-22 13:43:13 +0000
committerDries Buytaert <dries@buytaert.net>2008-11-22 13:43:13 +0000
commiteb68540da33d7a911922bf497faa999236978e06 (patch)
treee353e33269a246d481f5a5953a2eb51345f07a92 /modules
parent653e63bd05b3027797fff3d23377f448e47becfb (diff)
downloadbrdo-eb68540da33d7a911922bf497faa999236978e06.tar.gz
brdo-eb68540da33d7a911922bf497faa999236978e06.tar.bz2
- Patch #336746 by justinrandell: fixed broken t() function call.
Diffstat (limited to 'modules')
-rw-r--r--modules/taxonomy/taxonomy.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/taxonomy/taxonomy.test b/modules/taxonomy/taxonomy.test
index 96dd9b2e1..4aa5cc9e7 100644
--- a/modules/taxonomy/taxonomy.test
+++ b/modules/taxonomy/taxonomy.test
@@ -77,7 +77,7 @@ class TaxonomyVocabularyFunctionalTest extends TaxonomyWebTestCase {
$edit['required'] = 1;
$edit['weight'] = 0;
$this->drupalPost(NULL, $edit, t('Save'));
- $this->assertRaw(t('Created new vocabulary %name.', array('%name' => $edit['name']), t('Vocabulary created successfully')));
+ $this->assertRaw(t('Created new vocabulary %name.', array('%name' => $edit['name'])), t('Vocabulary created successfully'));
// Edit the vocabulary.
$this->drupalGet('admin/content/taxonomy');