Fix eslint errors reported by the latest eslint
This commit is contained in:
parent
0d862890e0
commit
2ca081216b
|
@ -35,36 +35,36 @@ describe('Memory connector with mocked discovery', function() {
|
||||||
dataScale: null,
|
dataScale: null,
|
||||||
nullable: 0,
|
nullable: 0,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
owner: 'STRONGLOOP',
|
owner: 'STRONGLOOP',
|
||||||
tableName: 'INVENTORY',
|
tableName: 'INVENTORY',
|
||||||
columnName: 'LOCATION_ID',
|
columnName: 'LOCATION_ID',
|
||||||
dataType: 'varchar',
|
dataType: 'varchar',
|
||||||
dataLength: 20,
|
dataLength: 20,
|
||||||
dataPrecision: null,
|
dataPrecision: null,
|
||||||
dataScale: null,
|
dataScale: null,
|
||||||
nullable: 0,
|
nullable: 0,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
owner: 'STRONGLOOP',
|
owner: 'STRONGLOOP',
|
||||||
tableName: 'INVENTORY',
|
tableName: 'INVENTORY',
|
||||||
columnName: 'AVAILABLE',
|
columnName: 'AVAILABLE',
|
||||||
dataType: 'int',
|
dataType: 'int',
|
||||||
dataLength: null,
|
dataLength: null,
|
||||||
dataPrecision: 10,
|
dataPrecision: 10,
|
||||||
dataScale: 0,
|
dataScale: 0,
|
||||||
nullable: 1,
|
nullable: 1,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
owner: 'STRONGLOOP',
|
owner: 'STRONGLOOP',
|
||||||
tableName: 'INVENTORY',
|
tableName: 'INVENTORY',
|
||||||
columnName: 'TOTAL',
|
columnName: 'TOTAL',
|
||||||
dataType: 'int',
|
dataType: 'int',
|
||||||
dataLength: null,
|
dataLength: null,
|
||||||
dataPrecision: 10,
|
dataPrecision: 10,
|
||||||
dataScale: 0,
|
dataScale: 0,
|
||||||
nullable: 1,
|
nullable: 1,
|
||||||
}];
|
}];
|
||||||
|
|
||||||
ds.discoverModelProperties = function(modelName, options, cb) {
|
ds.discoverModelProperties = function(modelName, options, cb) {
|
||||||
process.nextTick(function() {
|
process.nextTick(function() {
|
||||||
|
|
Loading…
Reference in New Issue