Skip to content

Commit

Permalink
chore: minor doc fix, test message, test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
trentm committed Oct 27, 2021
1 parent cf0708c commit 2b98287
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ as they are added over time.
===== Features
* feat: add `apm.getServiceName()` {pull}1949[#1949] +
This will be used by https://github.com/elastic/ecs-logging-js[ecs-logging packages]
This will be used by https://github.com/elastic/ecs-logging-nodejs[ecs-logging packages]
to integrate with APM.
* feat: support numeric and boolean labels {pull}1909[#1909] +
Expand Down
2 changes: 1 addition & 1 deletion test/instrumentation/modules/elasticsearch.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ test('client.ping with callback', function userLandCode (t) {
var client = new elasticsearch.Client({ host: host })

client.ping(function (err) {
t.error(err)
t.error(err, 'no error from client.ping')
agent.endTransaction()
agent.flush()
})
Expand Down
2 changes: 1 addition & 1 deletion test/sanitize-field-names/express.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ function createMiddleware (type) {

test('Running fixtures with express', function (suite) {
for (const [, fixture] of fixtures.entries()) {
test(fixture.name, function (t) {
suite.test(fixture.name, function (t) {
runTest(
t,
fixture.expected,
Expand Down

0 comments on commit 2b98287

Please sign in to comment.