diff --git a/lib/plugins/rjsmelo/index.js b/lib/plugins/rjsmelo/index.js index 38339e5..0e7fe87 100644 --- a/lib/plugins/rjsmelo/index.js +++ b/lib/plugins/rjsmelo/index.js @@ -12,7 +12,7 @@ exports.register = function(plugin, options, next) { method: 'GET', path: '/rjsmelo', handler: function(request, reply) { - reply('don\'t worry, be hapi!'); + reply('Look mom I\'m hapi!'); } }); diff --git a/test/plugins/rjsmelo/index.js b/test/plugins/rjsmelo/index.js index b41135e..36c745c 100644 --- a/test/plugins/rjsmelo/index.js +++ b/test/plugins/rjsmelo/index.js @@ -43,7 +43,7 @@ describe('rjsmelo', 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('Look mom I\'m hapi!'); done(); });