Skip to content

Commit 47da0c2

Browse files
fix test
1 parent 62f728d commit 47da0c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/e2e/tests/smoke/browser/verify-key-details.e2e.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,10 @@ test('Verify that user can see ZSet Key details', async t => {
113113
const keyTTLValue = await browserPage.keyDetailsTTL.textContent;
114114

115115
await t.expect(keyNameFromDetails).contains(keyName, 'The Key Name');
116-
await t.expect(keyDetails).contains('Zset', 'The Key Type');
116+
await t.expect(keyDetails).contains('Sorted Set', 'The Key Type');
117117
await t.expect(keyDetails).contains('TTL', 'The TTL');
118118
await t.expect(keyTTLValue).contains(keyTTL, 'The Key TTL');
119-
await t.expect(keyBadge).contains('Zset', 'The Key Badge');
119+
await t.expect(keyBadge).contains('Sorted Set', 'The Key Badge');
120120
});
121121
test('Verify that user can see JSON Key details', async t => {
122122
const keyName = 'JSON1testKeyForEdit';

0 commit comments

Comments
 (0)