diff --git a/CHANGELOG.md b/CHANGELOG.md index ebb93c86..de94a034 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # SOE Profile +11.4.2 +------------------------------------------------------------------------------- +- Adjusted codeception test for cache issue. + 11.4.1 ------------------------------------------------------------------------------- - Added "Site Type" field to site information config page. diff --git a/soe_profile.info.yml b/soe_profile.info.yml index 7aee09c4..66ff4ead 100644 --- a/soe_profile.info.yml +++ b/soe_profile.info.yml @@ -1,6 +1,6 @@ name: 'SOE Profile' description: 'Jumpstart Website Profile' -version: 11.4.1 +version: 11.4.2 type: profile project: Stanford core_version_requirement: ^10 || ^11 diff --git a/tests/codeception/acceptance/Paragraphs/ListsCest.php b/tests/codeception/acceptance/Paragraphs/ListsCest.php index ce78b649..2f73f036 100644 --- a/tests/codeception/acceptance/Paragraphs/ListsCest.php +++ b/tests/codeception/acceptance/Paragraphs/ListsCest.php @@ -765,13 +765,14 @@ public function testListParagraphBasicPageTypesFilter(AcceptanceTester $I) { 'type' => 'stanford_page', 'title' => 'B' . $this->faker->text(15), 'su_basic_page_type' => $type_term->id(), + 'created' => time(), ]); $second_basic_page_entity = $I->createEntity([ 'type' => 'stanford_page', 'title' => 'A' . $this->faker->text(15), 'su_basic_page_type' => $type_term->id(), - 'created' => time() - 120, + 'created' => time() - 12000, ]); $I->amOnPage("/node/{$basic_page_entity->id()}/edit"); @@ -801,7 +802,7 @@ public function testListParagraphBasicPageTypesFilter(AcceptanceTester $I) { 'su_basic_page_type' => $type_term->id(), 'su_page_description' => $this->faker->text, 'layout_selection' => 'stanford_basic_page_full', - 'created' => time() - 1000, + 'created' => time() - 100000, ]); $I->amOnPage($layout_changed_page->toUrl('edit-form')->toString()); $I->click('Save'); @@ -873,6 +874,7 @@ protected function getNodeWithList(AcceptanceTester $I, array $view) { 'target_id' => $paragraph->id(), 'entity' => $paragraph, ], + 'created' => time(), ]); return $node;