Skip to content

Commit b7b7220

Browse files
committed
fix
1 parent eb9026f commit b7b7220

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/e2e/helpers/conf.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ export const cloudDatabaseConfig = {
100100
databaseName: `${process.env.E2E_CLOUD_DATABASE_NAME || 'cloud-database'}-${uniqueId}`,
101101
databaseUsername: process.env.E2E_CLOUD_DATABASE_USERNAME,
102102
databasePassword: process.env.E2E_CLOUD_DATABASE_PASSWORD,
103-
accessKey: process.env.E2E_CLOUD_API_ACCESS_KEY || '',
104-
secretKey: process.env.E2E_CLOUD_API_SECRET_KEY || ''
103+
accessKey: process.env.E2E_CLOUD_API_ACCESS_KEY,
104+
secretKey: process.env.E2E_CLOUD_API_SECRET_KEY
105105
};
106106

107107
export const ossStandaloneNoPermissionsConfig = {

tests/e2e/tests/smoke/database/autodiscover-db.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ test
5252
// await deleteDatabase(databaseName);
5353
})('Verify that user can connect to the RE Cloud database via auto-discover flow', async t => {
5454
// Verify that user can see the Cloud auto-discovery option selected by default when switching to the auto-discovery of databases
55-
databaseName = await autodiscoverRECloudDatabase(cloudDatabaseConfig.accessKey, cloudDatabaseConfig.secretKey);
55+
databaseName = await autodiscoverRECloudDatabase(cloudDatabaseConfig.accessKey!, cloudDatabaseConfig.secretKey!);
5656
// uncomment when fixed db will be added to cloud subscription
5757
// await myRedisDatabasePage.clickOnDBByName(databaseName);
5858
// // Verify that user can add database from fixed subscription

0 commit comments

Comments
 (0)