diff --git a/modules/node/node.test b/modules/node/node.test
index e8eb459..02703ba 100644
--- a/modules/node/node.test
+++ b/modules/node/node.test
@@ -688,6 +688,30 @@ class NodeCreationTestCase extends DrupalWebTestCase {
     // Check that the user was redirected to the home page.
     $this->assertText(t('Welcome to Drupal'), t('The user is redirected to the home page.'));
   }
+
+  /**
+   * Test content type are listed if they are moved under a different
+   * 'parent' menu item or to a different menu.
+   */
+  public function testContentTypeAfterMenuLinkIsShifted() {
+    $web_user = $this->drupalCreateUser(
+        array('bypass node access',
+          'administer content types',
+          'administer menu',
+        )
+        );
+    $this->drupalLogin($web_user);
+    for ($i = 0; $i < 2; $i++) {
+      $this->drupalGet('admin/structure/menu/manage/navigation');
+      $this->clickLink('edit', 1);
+      $this->drupalPost(NULL, array('parent' => 'main-menu:0'), t('Save'));
+    }
+    $this->drupalGet('node/add');
+    $this->assertText('Basic page');
+    $this->assertText('Article');
+    $this->assertNoText('You have not created any content types yet. Go to the content type creation page to add a new content type.');
+  }
+
 }
 
 /**
