diff --git a/test/test-cases/api-sync-mode-sqlite-test-cases.js b/test/test-cases/api-sync-mode-sqlite-test-cases.js index 35599ddd..e4993161 100644 --- a/test/test-cases/api-sync-mode-sqlite-test-cases.js +++ b/test/test-cases/api-sync-mode-sqlite-test-cases.js @@ -370,7 +370,7 @@ module.exports = ( assert.isObject(res.body.error) assert.propertyVal(res.body.error, 'code', 401) assert.propertyVal(res.body.error, 'message', 'Unauthorized') - assert.propertyVal(res.body.error, 'data', null) + assert.isObject(res.body.error.data) assert.propertyVal(res.body, 'id', 5) assert.isString(res.body.jsonrpc) }) @@ -1800,10 +1800,11 @@ module.exports = ( assert.isObject(res.body) assert.isObject(res.body.error) assert.propertyVal(res.body.error, 'code', 400) - assert.isArray(res.body.error.data) - assert.isAbove(res.body.error.data.length, 0) + assert.isObject(res.body.error.data) + assert.isArray(res.body.error.data.errorMetadata) + assert.isAbove(res.body.error.data.errorMetadata.length, 0) - res.body.error.data.forEach((item) => { + res.body.error.data.errorMetadata.forEach((item) => { assert.isObject(item) })