diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-02-13 02:22:09 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-02-13 02:22:09 +0000 |
commit | 535db9d024393d89a4843eea638056452b4c687d (patch) | |
tree | 78b52ab0520b566d3dbbd186d6d43246682a768c /modules/forum/forum.test | |
parent | 2da17d8010a41fd96dbb6e1785b4a7b56a9cbee0 (diff) | |
download | brdo-535db9d024393d89a4843eea638056452b4c687d.tar.gz brdo-535db9d024393d89a4843eea638056452b4c687d.tar.bz2 |
#69468 by marcingy, greggles, mikey_p: Usability: Display node type on editing form.
Diffstat (limited to 'modules/forum/forum.test')
-rw-r--r-- | modules/forum/forum.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/forum/forum.test b/modules/forum/forum.test index 95f0ccbfe..426a5dccc 100644 --- a/modules/forum/forum.test +++ b/modules/forum/forum.test @@ -313,7 +313,7 @@ class ForumTestCase extends DrupalWebTestCase { $this->drupalGet('node/' . $node->nid . '/edit'); $this->assertResponse($response); if ($response == 200) { - $this->assertTitle($node->title . ' | Drupal', t('Forum edit node was displayed')); + $this->assertTitle('Edit Forum topic ' . $node->title . ' | Drupal', t('Forum edit node was displayed')); $this->assertText(t('Home ' . $crumb . ' @title', array('@title' => $node->title)), t('Breadcrumbs were displayed')); } |