Browse Source

verify Fixed hapi's json test

Mike Smith 11 years ago
parent
commit
854c9a0768
1 changed files with 1 additions and 1 deletions
  1. 1 1
      hapi/app.js

+ 1 - 1
hapi/app.js

@@ -49,7 +49,7 @@ if (cluster.isMaster) {
 		method: 'GET',
 		path: '/json',
 		handler: function(req) {
-			req.reply({ message: 'Hello World!' })
+			req.reply({ message: 'Hello, World!' })
 		}
 	});