Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
imonroe committed Apr 29, 2024
1 parent 7819d6f commit 81997ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function testAdminPerms(AcceptanceTester $I) {
* Test site embedder perms
*/
public function testSiteEmbedderPerms(AcceptanceTester $I) {
$user = $I->createUserWithRoles(['soe_site_embedder','site_manager']);
$user = $I->createUserWithRoles(['site_embedder','site_manager']);
$I->logInAs($user->getAccountName());
$I->amOnPage('/media/add/embeddable');
$I->canSeeResponseCodeIs(200);
Expand Down
3 changes: 3 additions & 0 deletions tests/codeception/acceptance/Paragraphs/TeaserCest.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ public function testTeaserParagraphHeaders(AcceptanceTester $I) {
$teaser_entities = [];
$teaser_item_field = [];
foreach ($node_types as $node_type) {
if ($node_type->id() === 'spotlight') {
continue;
}
$teaser_entities[$node_type->id()] = $I->createEntity([
'title' => $this->faker->words(3, TRUE),
'type' => $node_type->id(),
Expand Down

0 comments on commit 81997ba

Please sign in to comment.