diff --git a/core/modules/forum/forum.test b/core/modules/forum/forum.test
index c7c3d9c..fcb91c5 100644
--- a/core/modules/forum/forum.test
+++ b/core/modules/forum/forum.test
@@ -246,6 +246,24 @@ class ForumTestCase extends DrupalWebTestCase {
     $this->deleteForum($this->delete_forum['tid']);
     // Create forum at the top (root) level.
     $this->root_forum = $this->createForum('forum');
+
+    // Test vocabulary form alterations.
+    $this->drupalGet('admin/structure/taxonomy/forums/edit');
+    $this->assertFieldByName('op', t('Save'), t('Save button found.'));
+    $this->assertNoFieldByName('op', t('Delete'), t('Delete button not found.'));
+    // Test tags vocabulary form is not affected.
+    $this->drupalGet('admin/structure/taxonomy/tags/edit');
+    $this->assertFieldByName('op', t('Save'), t('Save button found.'));
+    $this->assertFieldByName('op', t('Delete'), t('Delete button found.'));
+
+    // Test term edit form for alterations.
+    $this->drupalGet('taxonomy/term/' . $this->container['tid'] . '/edit');
+    $this->assertField('relations');
+    $this->assertNoField('parent');
+    // Test tags vocabulary term form is not affected.
+    $this->drupalGet('admin/structure/taxonomy/tags/add');
+    $this->assertField('relations');
+    $this->assertField('parent');
   }
 
   /**
