Skip to content

Commit 80f6d17

Browse files
committed
update for json get hint
1 parent 75f918f commit 80f6d17

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/e2e/helpers/conf.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export const ossStandaloneNoPermissionsConfig = {
109109
};
110110

111111
export const ossStandaloneForSSHConfig = {
112-
host: process.env.OSS_STANDALONE_HOST || '172.33.100.10',
112+
host: process.env.OSS_STANDALONE_HOST || '172.33.100.111',
113113
port: process.env.OSS_STANDALONE_PORT || '6379',
114114
databaseName: `${process.env.OSS_STANDALONE_DATABASE_NAME || 'oss-standalone-for-ssh'}-${uniqueId}`,
115115
databaseUsername: process.env.OSS_STANDALONE_USERNAME,

tests/e2e/tests/critical-path/browser/context.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ test('Verify that user can see saved CLI size on Browser page when he returns ba
4242
await t.drag(cliResizeButton, 0, -offsetY, { speed: 0.01 });
4343
await t.click(myRedisDatabasePage.myRedisDBButton);
4444
await myRedisDatabasePage.clickOnDBByName(ossStandaloneConfig.databaseName);
45-
await t.expect(await cliPage.cliArea.clientHeight > cliAreaHeightEnd).ok('Saved context for resizable cli is incorrect');
45+
await t.expect(await cliPage.cliArea.clientHeight).gt(cliAreaHeightEnd, 'Saved context for resizable cli is incorrect');
4646
});
4747
test('Verify that user can see saved Key details and Keys tables size on Browser page when he returns back to Browser page', async t => {
4848
const offsetX = 200;

tests/e2e/tests/critical-path/cli/cli-critical.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ test
9494
const commandHints = [
9595
'index [data_type] [prefix] [filter] [default_lang] [lang_attribute] [default_score] [score_attribute] [payload_attribute] [maxtextfields] [seconds] [nooffsets] [nohl] [nofields] [nofreqs] [stopwords] [skipinitialscan] schema field [field ...]',
9696
'index [delete docs]',
97-
'key [indent] [newline] [space] [paths [paths ...]]',
97+
'key [indent] [newline] [space] [path [path ...]]',
9898
'key [path]'
9999
];
100100
const commands = [

0 commit comments

Comments
 (0)