Fixed failing test due to changing the key name in the root-level object, removed the serialVersionUID compile flag.

This commit is contained in:
Jon Brisbin
2012-08-06 14:40:32 -05:00
parent 7775af8be4
commit f3dde0c144
3 changed files with 3 additions and 3 deletions

View File

@@ -30,7 +30,7 @@ configure(subprojects) { subproject ->
compile.extendsFrom providedCompile
}
[compileJava, compileTestJava]*.options*.compilerArgs = ["-Xlint:serial", "-Xlint:unchecked"]
[compileJava, compileTestJava]*.options*.compilerArgs = ["-Xlint:unchecked"]
project.sourceCompatibility = 1.6
project.targetCompatibility = 1.6

View File

@@ -42,7 +42,7 @@ class DiscoverySpec extends BaseSpec {
then:
response.statusCode == HttpStatus.OK
body.resources.size() == 10
body.content.size() == 10
body.page.total == 2
body.page.current == 1

View File

@@ -47,7 +47,7 @@ class QueryMethodsSpec extends BaseSpec {
then:
response.statusCode == HttpStatus.OK
body.resources.size() == 1
body.content.size() == 1
}