Skip to content

Commit

Permalink
fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jsumners-nr committed Oct 4, 2024
1 parent a564237 commit 3b66fe6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/versioned/fastify/add-hook.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const test = require('node:test')
const assert = require('node:assert')

const { removeModules } = require('../../lib/cache-buster')
const { assertSegments, match } = require('../../lib/custom-assertions')
const { assertSegments } = require('../../lib/custom-assertions')
const helper = require('../../lib/agent_helper')
const common = require('./common')

Expand Down Expand Up @@ -177,7 +177,7 @@ test('error hook', async function errorHookTest(t) {
const address = fastify.server.address()
const result = await common.makeRequest(address, '/error')
assert.ok(ok)
assert.deepEqual(result, {
assert.deepEqual(result, {
statusCode: 500,
error: 'Internal Server Error',
message: 'test onError hook'
Expand Down
2 changes: 1 addition & 1 deletion test/versioned/fastify/code-level-metrics-hooks.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const test = require('node:test')
const assert = require('node:assert')

const { removeModules } = require('../../lib/cache-buster')
const { assertCLMAttrs, match } = require('../../lib/custom-assertions')
const { assertCLMAttrs } = require('../../lib/custom-assertions')
const helper = require('../../lib/agent_helper')
const common = require('./common')

Expand Down
2 changes: 1 addition & 1 deletion test/versioned/fastify/naming-common.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
const assert = require('node:assert')

const { routesToTest, makeRequest } = require('./common')
const { assertSegments, match } = require('../../lib/custom-assertions')
const { assertSegments } = require('../../lib/custom-assertions')
const helper = require('../../lib/agent_helper')

module.exports = async function runTests(t, getExpectedSegments) {
Expand Down

0 comments on commit 3b66fe6

Please sign in to comment.