Skip to content

Commit bdeda3f

Browse files
authored
Merge pull request #2588 from RedisInsight/e2e/bugfix/fixes-for-3807
e2e fixes for RI-3807
2 parents ea78efa + 95e7395 commit bdeda3f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/e2e/tests/critical-path/browser/consumer-group.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ test('Verify that user can see the Consumer information columns (Consumer Name,
112112
const consumerColumns = [
113113
'Consumer Name',
114114
'Pending',
115-
'Idle Time, ms'
115+
'Idle Time, msec'
116116
];
117117
// Add New Stream Key with groups and consumers
118118
for(const command of cliCommands){

tests/e2e/tests/critical-path/slow-log/slow-log.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ test('Verify that user can set slowlog-log-slower-than value in milliseconds and
9292
let microsecondsDuration = await slowLogPage.slowLogCommandValue.withExactText(command).parent(3).find(slowLogPage.cssSelectorDurationValue).textContent;
9393
// Change microseconds to milliseconds in configuration
9494
await slowLogPage.changeSlowerThanParameter(slowerThanParameter, slowLogPage.slowLogConfigureMilliSecondsUnit);
95-
await t.expect(slowLogPage.slowLogTable.find('span').withExactText('Duration, ms').exists).ok('Micro-seconds were converted to milli-seconds');
95+
await t.expect(slowLogPage.slowLogTable.find('span').withExactText('Duration, msec').exists).ok('Micro-seconds were converted to milli-seconds');
9696
let millisecondsDuration = await slowLogPage.slowLogCommandValue.withExactText(command).parent(3).find(slowLogPage.cssSelectorDurationValue).textContent;
9797
await t.expect(parseFloat(millisecondsDuration)).eql(parseFloat(microsecondsDuration.replace(' ', '')) / 1000);
9898
// Verify that user can set slowlog-log-slower-than value in microseconds and command duration will be re-calculated to microseconds

0 commit comments

Comments
 (0)