Skip to content

Commit cd3e7c6

Browse files
committed
fixes
1 parent 3ad4706 commit cd3e7c6

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

tests/e2e/helpers/database-scripts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export async function updateColumnValueInDBTable(tableName: string, columnName:
1818
if (err) {
1919
reject(new Error(`Error during changing ${columnName} column value: ${err.message}`));
2020
} else {
21-
console.log(`Value of data in ${tableName}:`, row[columnName]);
21+
console.log(`Value of data in ${tableName}:`, row['data']);
2222
db.run(query, (err: { message: string }) => {
2323
if (err) {
2424
reject(new Error(`Error during changing ${columnName} column value: ${err.message}`));

tests/e2e/test-data/features-configs/insights-electron-build.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,6 @@
1010
],
1111
"flag": true,
1212
"filters": [
13-
{
14-
"name": "agreements.analytics",
15-
"value": false,
16-
"cond": "eq"
17-
},
1813
{
1914
"name": "config.server.buildType",
2015
"value": "ELECTRON",

0 commit comments

Comments
 (0)