$this->assertRaw(t('Created new vocabulary %name.', array('%name' => $edit['name']), t('Vocabulary created successfully')));

note the third param to t, which is a typo.

should be:

$this->assertRaw(t('Created new vocabulary %name.', array('%name' => $edit['name'])), t('Vocabulary created successfully'));

patch attached.

CommentFileSizeAuthor
oopsie.patch855 bytesAnonymous (not verified)

Comments

Anonymous’s picture

Priority: Normal » Critical
Status: Needs review » Reviewed & tested by the community

thanks testbot.

dries’s picture

Status: Reviewed & tested by the community » Fixed

Good catch. Committed to CVS HEAD. Thanks.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.