Skip to content

Commit

Permalink
fix: lint error and duplicated nock dependency
Browse files Browse the repository at this point in the history
Signed-off-by: Benoit Orihuela <[email protected]>
  • Loading branch information
bobeal committed Aug 5, 2020
1 parent 458922f commit 044fcd6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,13 @@
"logops": "2.1.0"
},
"devDependencies": {
"nock":"14.4.0",
"coveralls": "~3.0.2",
"husky": "~1.1.0",
"eslint": "~5.16.0",
"eslint-config-tamia": "~6.2.1",
"eslint-plugin-prettier": "~3.1.0",
"should": "8.4.0",
"nock": "10.0.2",
"nock": "13.0.3",
"lint-staged": "~7.3.0",
"mocha": "5.2.0",
"istanbul": "0.4.5",
Expand Down
4 changes: 2 additions & 2 deletions test/unit/ngsi-communication-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ const async = require('async');
const apply = async.apply;
const config = require('../testConfig');
const should = require('should');
const nock = require('nock'),
const utils = require('../tools/utils'),
const nock = require('nock');
const utils = require('../tools/utils');
const sigfoxDevice = {
id: 'sigApp1',
type: 'SIGFOX',
Expand Down

0 comments on commit 044fcd6

Please sign in to comment.