Skip to content

Commit ebfd4e5

Browse files
committed
Warning with OpenSearch Version
1 parent 1e7c532 commit ebfd4e5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Test/Functional/Acceptance/AcceptanceCest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public function testDefault(\CliTester $I, \Codeception\Example $data): void
9090
$I->see('Home page');
9191
$I->see('CMS homepage content goes here.');
9292

93-
$log = $I->grabFileContent('/var/log/cloud.log');
93+
$log = $I->grabFileContent('/init/var/log/cloud.log');
9494
$I->assertStringContainsString('--admin-password=\'******\'', $log);
9595
if (strpos($log, '--db-password') !== false) {
9696
$I->assertStringContainsString('--db-password=\'******\'', $log);

src/Test/Functional/Acceptance/AdminCredentialCest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public function testInstallWithoutAdminEmail(\CliTester $I, \Codeception\Example
4949
$I->see('Home page');
5050
$I->see('CMS homepage content goes here.');
5151

52-
$log = $I->grabFileContent('/var/log/cloud.log');
52+
$log = $I->grabFileContent('/init/var/log/cloud.log');
5353
$I->assertStringContainsString($data['installMessage'], $log);
5454
$I->assertStringNotContainsString('--admin-user', $log);
5555
$I->assertStringNotContainsString('--admin-firstname', $log);

src/Test/Functional/Acceptance/DataTypesOptionValidationCest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function dataTypesValidationOnDeploy(\CliTester $I, \Codeception\Example
3636
$I->startEnvironment();
3737
$I->runDockerComposeCommand('run deploy cloud-deploy');
3838

39-
$log = $I->grabFileContent('/var/log/cloud.log');
39+
$log = $I->grabFileContent('/init/var/log/cloud.log');
4040
$I->assertStringContainsString($data['expectedError'], $log);
4141
}
4242

0 commit comments

Comments
 (0)