From 3086471157869b73dd2d793bb331edfad4bbcba3 Mon Sep 17 00:00:00 2001 From: mertmit Date: Fri, 10 Feb 2023 12:51:17 +0300 Subject: [PATCH] test: modify meta sync test for sticky changes Signed-off-by: mertmit --- tests/playwright/tests/metaSync.spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/playwright/tests/metaSync.spec.ts b/tests/playwright/tests/metaSync.spec.ts index 2011508ca5..f845c384d3 100644 --- a/tests/playwright/tests/metaSync.spec.ts +++ b/tests/playwright/tests/metaSync.spec.ts @@ -252,18 +252,18 @@ test.describe('Meta sync', () => { await dashboard.treeView.openTable({ title: 'Table1' }); await dashboard.grid.toolbar.clickFields(); - await dashboard.grid.toolbar.fields.click({ title: 'Col1' }); + await dashboard.grid.toolbar.fields.click({ title: 'Col2' }); await dashboard.grid.toolbar.clickFields(); await dashboard.grid.toolbar.sort.add({ - columnTitle: 'Col1', + columnTitle: 'Col2', isAscending: false, isLocallySaved: false, }); await dashboard.grid.toolbar.clickFilter(); await dashboard.grid.toolbar.filter.add({ - columnTitle: 'Col1', + columnTitle: 'Col2', opType: '>=', value: '5', isLocallySaved: false,