Index: modules/forum/forum.test
===================================================================
RCS file: /cvs/drupal/drupal/modules/forum/forum.test,v
retrieving revision 1.53
diff -u -d -p -r1.53 forum.test
--- modules/forum/forum.test	15 Apr 2010 11:58:07 -0000	1.53
+++ modules/forum/forum.test	22 Apr 2010 19:42:43 -0000
@@ -137,8 +137,18 @@ class ForumTestCase extends DrupalWebTes
     $this->container = $this->editForumTaxonomy();
     // Create forum container.
     $this->container = $this->createForum('container');
+    // Verify "edit container" link exists and functions correctly
+    $this->drupalGet('admin/structure/forum');
+    $this->clickLink('edit container');
+    $this->assertResponse(200, t('Followed the link to edit the container'));
     // Create forum inside the forum container.
     $this->forum = $this->createForum('forum', $this->container['tid']);
+    // Verify the "edit forum" link exists and functions correctly
+    $this->drupalGet('admin/structure/forum');
+    $this->clickLink('edit forum');
+    $this->assertResponse(200, t('Followed the link to edit the forum'));
+    // Navigate back to forum structure page
+    $this->drupalGet('admin/structure/forum');
     // Create second forum in container.
     $this->delete_forum = $this->createForum('forum', $this->container['tid']);
     // Save forum overview.
