Skip to content

Commit

Permalink
Fix module ID
Browse files Browse the repository at this point in the history
  • Loading branch information
yurabakhtin committed Sep 19, 2024
1 parent f2a4cbe commit 1452102
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions tests/codeception/acceptance/CreatePhpPageCest.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ public function testCreatePhpPageOnTopMenu(AcceptanceTester $I)

$I->wait(1);

$I->fillField('SettingsForm[phpGlobalPagePath]', '@custom_pages/tests/codeception/_data/views/global_pages');
$I->fillField('SettingsForm[phpGlobalSnippetPath]', '@custom_pages/tests/codeception/_data/views/global_snippets');
$I->fillField('SettingsForm[phpContainerSnippetPath]', '@custom_pages/tests/codeception/_data/views/container_snippets');
$I->fillField('SettingsForm[phpContainerPagePath]', '@custom_pages/tests/codeception/_data/views/container_pages');
$I->fillField('SettingsForm[phpGlobalPagePath]', '@custom-pages/tests/codeception/_data/views/global_pages');
$I->fillField('SettingsForm[phpGlobalSnippetPath]', '@custom-pages/tests/codeception/_data/views/global_snippets');
$I->fillField('SettingsForm[phpContainerSnippetPath]', '@custom-pages/tests/codeception/_data/views/container_snippets');
$I->fillField('SettingsForm[phpContainerPagePath]', '@custom-pages/tests/codeception/_data/views/container_pages');
$I->click('Save');

$I->seeSuccess('Saved');
Expand Down
8 changes: 4 additions & 4 deletions tests/codeception/acceptance/CreatePhpSnippetCest.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ public function testCreateMarkdownPageOnTopMenu(AcceptanceTester $I)

$I->wait(1);

$I->fillField('SettingsForm[phpGlobalPagePath]', '@custom_pages/tests/codeception/_data/views/global_pages');
$I->fillField('SettingsForm[phpGlobalSnippetPath]', '@custom_pages/tests/codeception/_data/views/global_snippets');
$I->fillField('SettingsForm[phpContainerSnippetPath]', '@custom_pages/tests/codeception/_data/views/container_snippets');
$I->fillField('SettingsForm[phpContainerPagePath]', '@custom_pages/tests/codeception/_data/views/container_pages');
$I->fillField('SettingsForm[phpGlobalPagePath]', '@custom-pages/tests/codeception/_data/views/global_pages');
$I->fillField('SettingsForm[phpGlobalSnippetPath]', '@custom-pages/tests/codeception/_data/views/global_snippets');
$I->fillField('SettingsForm[phpContainerSnippetPath]', '@custom-pages/tests/codeception/_data/views/container_snippets');
$I->fillField('SettingsForm[phpContainerPagePath]', '@custom-pages/tests/codeception/_data/views/container_pages');
$I->click('Save');

$I->seeSuccess('Saved');
Expand Down

0 comments on commit 1452102

Please sign in to comment.