Skip to content

Commit

Permalink
Merge branch '11.x' of https://github.com/SU-SWS/stanford_profile int…
Browse files Browse the repository at this point in the history
…o 11.x
  • Loading branch information
pookmish committed Sep 17, 2024
2 parents 50a4081 + 1fc644e commit 6fa492b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion soe_profile.info.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 4 additions & 2 deletions tests/codeception/acceptance/Paragraphs/ListsCest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down Expand Up @@ -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');
Expand Down Expand Up @@ -873,6 +874,7 @@ protected function getNodeWithList(AcceptanceTester $I, array $view) {
'target_id' => $paragraph->id(),
'entity' => $paragraph,
],
'created' => time(),
]);

return $node;
Expand Down

0 comments on commit 6fa492b

Please sign in to comment.