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/blog | |
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/blog')
-rw-r--r-- | modules/blog/blog.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/blog/blog.test b/modules/blog/blog.test index 5086e001b..0ce260889 100644 --- a/modules/blog/blog.test +++ b/modules/blog/blog.test @@ -115,7 +115,7 @@ class BlogTestCase extends DrupalWebTestCase { $this->drupalGet('node/' . $node->nid . '/edit'); $this->assertResponse($response); if ($response == 200) { - $this->assertTitle($node->title. ' | Drupal', t('Blog edit node was displayed')); + $this->assertTitle('Edit Blog entry ' . $node->title. ' | Drupal', t('Blog edit node was displayed')); $this->assertText(t('Home ' . $crumb . ' @title', array('@title' => $node->title)), t('Breadcrumbs were displayed')); } |