Skip to content

Commit

Permalink
test(index): prefix unused param with underscore (#206)
Browse files Browse the repository at this point in the history
Signed-off-by: Frazer Smith <[email protected]>
  • Loading branch information
Fdawgs authored Jan 6, 2025
1 parent 6c8b368 commit e4c5dcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ tap.test('should fast serialize for the typebox 0.26.0 allOf intersect represent
])
}
}
}, (req, res) => res.send({ a: 1, b: 2 }))
}, (_req, res) => res.send({ a: 1, b: 2 }))
const response = await fastify.inject().get('/').then(res => res.json())
t.equal(response.a, 1)
t.equal(response.b, 2)
Expand Down

0 comments on commit e4c5dcc

Please sign in to comment.