Skip to content

Commit

Permalink
chore(deps): [email protected]
Browse files Browse the repository at this point in the history
  • Loading branch information
darinspivey committed Sep 17, 2021
1 parent 500705c commit 1313046
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-logdna": "^4.0.2",
"eslint-config-logdna": "^5.1.0",
"nock": "^13.0.4",
"semantic-release": "^17.4.7",
"semantic-release-config-logdna": "^1.3.0",
Expand Down
4 changes: 2 additions & 2 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ test('Call .log() with an object and indexMeta: true', (t) => {
nock(options.url)
.post('/', (body) => {
const payload = body.ls[0]
t.deepEqual(payload, {
t.same(payload, {
timestamp
, line: message
, level: 'INFO'
Expand Down Expand Up @@ -259,7 +259,7 @@ test('Error will still be processed if there is no stack trace', (t) => {
nock(options.url)
.post('/', (body) => {
const payload = body.ls[0]
t.deepEqual(payload, {
t.same(payload, {
timestamp
, line: error.message
, level: 'ERROR'
Expand Down

0 comments on commit 1313046

Please sign in to comment.