diff --git a/test/fastify/fastify-test.js b/test/fastify/fastify-test.js index 00e8444..e3576a3 100644 --- a/test/fastify/fastify-test.js +++ b/test/fastify/fastify-test.js @@ -29,7 +29,7 @@ describe('fastify plugin', () => { app.get('/pets', (req, reply) => { reply.status(204).send(); }); - + app.get('/pets/:petId/medicalHistory', (req, reply) => { reply.status(204).send(); });