Skip to content

Commit 35bcafd

Browse files
committed
update test feature flag
1 parent 92881d8 commit 35bcafd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/e2e/tests/web/regression/insights/feature-flag.e2e.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ test('Verify that default config applied when remote config version is lower', a
4141

4242
const featureVersion = await JSON.parse(await getColumnValueFromTableInDB(featuresConfigTable, 'data')).version;
4343

44-
await t.expect(featureVersion).eql(2.3402, 'Config with lowest version applied');
44+
await t.expect(featureVersion).eql(2.3403, 'Config with lowest version applied');
4545
await t.expect(browserPage.InsightsPanel.insightsBtn.exists).ok('Insights panel displayed when disabled in default config');
4646
});
4747
test('Verify that invaid remote config not applied even if its version is higher than in the default config', async t => {
@@ -51,7 +51,7 @@ test('Verify that invaid remote config not applied even if its version is higher
5151

5252
const featureVersion = await JSON.parse(await getColumnValueFromTableInDB(featuresConfigTable, 'data')).version;
5353

54-
await t.expect(featureVersion).eql(2.3402, 'Config highest version not applied');
54+
await t.expect(featureVersion).eql(2.3403, 'Config highest version not applied');
5555
await t.expect(browserPage.InsightsPanel.insightsBtn.exists).ok('Insights panel displayed when disabled in default config');
5656
});
5757
test

0 commit comments

Comments
 (0)