Skip to content
Snippets Groups Projects
Commit eb68540d authored by Dries Buytaert's avatar Dries Buytaert
Browse files

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

parent 653e63bd
No related branches found
No related tags found
No related merge requests found
......@@ -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');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment