diff --git a/routes/musician.js b/routes/musician.js index 798ef4abc..967c19a19 100644 --- a/routes/musician.js +++ b/routes/musician.js @@ -6,7 +6,7 @@ const schema = require('../store/schema'); // healthcheck router.get('/health', (req, res) => { - res.status('200').send("Status: ok!"); + res.status('200').send("Status ok"); }); // retrieve all musicians from data store @@ -62,4 +62,4 @@ router.delete('/:id', (req, res) => { }); }); -module.exports = router; \ No newline at end of file +module.exports = router;