Browse Source

verify Fixed grails' json test

Mike Smith 11 years ago
parent
commit
2879446e97

+ 1 - 1
grails/hello/grails-app/controllers/hello/HelloController.groovy

@@ -22,7 +22,7 @@ class HelloController {
     // Test type 1: JSON serialization
     // Test type 1: JSON serialization
     def json() {
     def json() {
         def msg = [
         def msg = [
-            message: "Hello, world"
+            message: "Hello, World!"
         ]
         ]
         render msg as JSON
         render msg as JSON
     }
     }