diff --git a/search_api_db/tests/src/Kernel/BackendTest.php b/search_api_db/tests/src/Kernel/BackendTest.php index dcda591..499d7fe 100644 --- a/search_api_db/tests/src/Kernel/BackendTest.php +++ b/search_api_db/tests/src/Kernel/BackendTest.php @@ -200,9 +200,6 @@ class BackendTest extends KernelTestBase { /** @var \Drupal\search_api\IndexInterface $index */ $index = $this->getIndex(); - $property = 'body'; - $this->addField($index, $property); - $processor = \Drupal::getContainer() ->get('plugin.manager.search_api.processor') ->createInstance('html_filter'); @@ -211,7 +208,6 @@ class BackendTest extends KernelTestBase { $index->save(); $this->assertArrayHasKey('html_filter', $index->getProcessors(), 'HTML filter processor is added.'); - $this->assertArrayHasKey('body', $index->getFields(), 'Body field is added.'); } /**