diff --git a/lib/plugins/DJCordhose/index.js b/lib/plugins/DJCordhose/index.js index 6db26dc..a13e64c 100644 --- a/lib/plugins/DJCordhose/index.js +++ b/lib/plugins/DJCordhose/index.js @@ -12,7 +12,7 @@ exports.register = function(plugin, options, next) { method: 'GET', path: '/DJCordhose', handler: function(request, reply) { - reply('don\'t worry, be hapi!'); + reply('don\'t worry, be hapi! Yo!'); } }); diff --git a/test/plugins/DJCordhose/index.js b/test/plugins/DJCordhose/index.js index 8cbf65b..de70d13 100644 --- a/test/plugins/DJCordhose/index.js +++ b/test/plugins/DJCordhose/index.js @@ -43,7 +43,7 @@ describe('DJCordhose', function() { server.inject(request, function(res) { expect(res.statusCode).to.equal(200); - expect(res.result).to.equal('don\'t worry, be hapi!'); + expect(res.result).to.equal('don\'t worry, be hapi! Yo!'); done(); });