diff --git a/plugins/entity/PanelizerEntityNode.class.php b/plugins/entity/PanelizerEntityNode.class.php
index 5fc17a2..b43261c 100644
--- a/plugins/entity/PanelizerEntityNode.class.php
+++ b/plugins/entity/PanelizerEntityNode.class.php
@@ -183,16 +183,6 @@ public function hook_page_alter(&$page) {
     }
   }
 
-  /**
-   * Implements a delegated hook_admin_paths.
-   *
-   * Need to avoid collisions on node/%node/panelizer paths for the Project
-   * module as used on drupal.org.
-   */
-  public function hook_admin_paths(&$items) {
-    $items['node/[0-9]+/panelizer*'] = TRUE;
-  }
-
   public function preprocess_panelizer_view_mode(&$vars, $entity, $element, $panelizer, $info) {
     parent::preprocess_panelizer_view_mode($vars, $entity, $element, $panelizer, $info);
 
diff --git a/tests/panelizer.node.test b/tests/panelizer.node.test
index d36d718..c74b1b0 100644
--- a/tests/panelizer.node.test
+++ b/tests/panelizer.node.test
@@ -34,6 +34,7 @@ function setUp(array $modules = array()) {
       'administer panelizer',
       'administer page manager',
       'use page manager',
+      'view the administration theme',
     );
     $web_user = $this->drupalCreateUser($perms);
     $this->drupalLogin($web_user);
@@ -83,12 +84,21 @@ function testPageConfiguration() {
       $this->assertText(t('No default display has been configured for this view mode.'));
     }
 
+    // Confirm the node page is not using the admin theme.
+    $this->drupalGet('node/' . $node->nid);
+    $this->assertResponse(200);
+    $this->assertNoRaw('themes/seven/style.css', 'The node page is not using the admin theme.');
+
     // Check that the view mode can be panelized.
     $this->drupalGet('node/' . $node->nid . '/panelizer');
+    $this->assertResponse(200);
     $this->assertText('Default');
     $this->assertLink('panelize', 0, 'The panelize link for the view mode appears on the page');
     $this->assertLinkByHref('node/' . $node->nid . '/panelizer/' . $view_mode, 0, 'A link to panelize the view mode appears on the page');
 
+    // Confirm the Panelizer pages are being used.
+    $this->assertRaw('themes/seven/style.css', 'The node Panelizer page is using the admin theme.');
+
     // Verify that the view mode is not currently panelized.
     $this->drupalGet('node/' . $node->nid . '/panelizer/' . $view_mode);
     $this->assertRaw(t('This %entity is not currently panelized.', array('%entity' => 'Node')));
