diff --git a/modules/core_search_facets/tests/src/Functional/HooksTest.php b/modules/core_search_facets/tests/src/Functional/HooksTest.php index d2cee23..9fdeeb7 100644 --- a/modules/core_search_facets/tests/src/Functional/HooksTest.php +++ b/modules/core_search_facets/tests/src/Functional/HooksTest.php @@ -10,7 +10,7 @@ * * @group facets */ -class TestCoreSearchBase extends CoreSearchFacetsTestBase { +class HooksTest extends CoreSearchFacetsTestBase { /** * {@inheritdoc} diff --git a/modules/core_search_facets/tests/src/Functional/IntegrationTest.php b/modules/core_search_facets/tests/src/Functional/IntegrationTest.php index 790e46b..a7063eb 100644 --- a/modules/core_search_facets/tests/src/Functional/IntegrationTest.php +++ b/modules/core_search_facets/tests/src/Functional/IntegrationTest.php @@ -10,7 +10,7 @@ * * @group facets */ -class IntegrationTestCoreSearchBase extends CoreSearchFacetsTestBase { +class IntegrationTest extends CoreSearchFacetsTestBase { use BlockTestTrait; @@ -143,6 +143,9 @@ public function testUpdatedDate() { $this->blocks[$facet_id] = $this->createBlock($facet_id); $this->setShowAmountOfResults($facet_id, TRUE); + $this->drupalGet("admin/config/search/facets/$facet_id/edit"); + $this->drupalPostForm(NULL, ['widget' => 'datebasic'], 'Save'); + // Update the changed date. The nodes were created on February/March 2016 // and the changed date is June 3, 2016. $node = Node::load(1);