Skip to content

Commit

Permalink
[pinpoint-apm#117] unit test equality
Browse files Browse the repository at this point in the history
  • Loading branch information
feelform committed Oct 13, 2022
1 parent 63f55d7 commit bbc5895
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions lib/adaptors.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,4 @@
}
}

module.exports = {
default: Adaptors
}
module.exports = Adaptors
2 changes: 1 addition & 1 deletion test/adaptors.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ const assert = require('node:assert/strict')

test('initialize', function(t) {
const logger = Adaptors.makeLogger()
assert.equal(logger, {})
assert.deepStrictEqual(logger, {})
t.end()
})

0 comments on commit bbc5895

Please sign in to comment.