diff --git a/src/Tests/ProcessorIntegrationTest.php b/src/Tests/ProcessorIntegrationTest.php index dbd4b53..cbd5192 100644 --- a/src/Tests/ProcessorIntegrationTest.php +++ b/src/Tests/ProcessorIntegrationTest.php @@ -127,13 +127,6 @@ public function testProcessorIntegration() { sort($actual_processors); $this->assertEqual($enabled, $actual_processors); - $this->checkAddHierarchyIntegration(); - $enabled[] = 'hierarchy'; - sort($enabled); - $actual_processors = array_keys($this->loadIndex()->getProcessors()); - sort($actual_processors); - $this->assertEqual($enabled, $actual_processors); - // The 'add_url' processor is not available to be removed because it's // locked. $this->checkUrlFieldIntegration(); @@ -407,18 +400,6 @@ public function checkTransliterationIntegration() { } /** - * Tests the hierarchy processor. - */ - protected function checkAddHierarchyIntegration() { - $configuration = array( - 'hierarchy_fields' => array( - 'uid' => 'uid', - ), - ); - $this->editSettingsForm($configuration, 'hierarchy'); - } - - /** * Tests the integration of the "URL field" processor. */ public function checkUrlFieldIntegration() {