- Patch #336746 by justinrandell: fixed broken t() function call.

merge-requests/26/head
Dries Buytaert 2008-11-22 13:43:13 +00:00
parent 653e63bd05
commit eb68540da3
1 changed files with 1 additions and 1 deletions

View File

@ -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');