Merge branch '1.1.x'

This commit is contained in:
Andy Wilkinson 2014-09-22 09:13:21 +01:00
commit c2e588a37c
1 changed files with 2 additions and 2 deletions

View File

@ -223,7 +223,7 @@ In this example, `tests.groovy` contains JUnit `@Test` methods or Spock `Specifi
classes. All the common framework annotations and static methods should be available to classes. All the common framework annotations and static methods should be available to
you without having to `import` them. you without having to `import` them.
Here is the `test.groovy` file that we used above (with a JUnit test): Here is the `tests.groovy` file that we used above (with a JUnit test):
[source,groovy,indent=0] [source,groovy,indent=0]
---- ----
@ -231,7 +231,7 @@ Here is the `test.groovy` file that we used above (with a JUnit test):
@Test @Test
void homeSaysHello() { void homeSaysHello() {
assertEquals("Hello World", new WebApplication().home()) assertEquals("Hello World!", new WebApplication().home())
} }
} }