Browse Source

verify Fixed play-scala's json test

Mike Smith 11 years ago
parent
commit
37ef687612
1 changed files with 1 additions and 1 deletions
  1. 1 1
      play-scala/app/controllers/Application.scala

+ 1 - 1
play-scala/app/controllers/Application.scala

@@ -38,7 +38,7 @@ object Application extends Controller {
 
 
   def json() = Action {
-    Ok(Json.obj("message" -> "Hello World!"))
+    Ok(Json.obj("message" -> "Hello, World!"))
   }
 
   def db(queries: Int) = PredicatedAction(isDbAvailable, ServiceUnavailable) {