Index: scripts/Stats.groovy =================================================================== --- scripts/Stats.groovy (revision 4668) +++ scripts/Stats.groovy (working copy) @@ -40,7 +40,7 @@ new Expando(name: "Tag Libraries", filetype: ".groovy", path: "taglib"), new Expando(name: "Groovy Helpers", filetype: ".groovy", path: "src.groovy"), new Expando(name: "Java Helpers", filetype: ".java", path: "src.java"), - new Expando(name: "Tests", filetype: ".groovy", path: "grails-tests"), + new Expando(name: "Tests", filetype: ".groovy", path: "test"), ] Index: scripts/BugReport.groovy =================================================================== --- scripts/BugReport.groovy (revision 4668) +++ scripts/BugReport.groovy (working copy) @@ -48,7 +48,7 @@ Ant.zip(destfile:zipName) { fileset(dir: "${basedir}", includes: "grails-app/**/*") - fileset(dir: "${basedir}", includes: "grails-tests/**/*") + fileset(dir: "${basedir}", includes: "test/**/*") fileset(dir: "${basedir}", includes: "scripts/**/*") fileset(dir: "${basedir}", includes: "spring/**/*") fileset(dir: "${basedir}", includes: "src/**/*") Index: scripts/CreateTestSuite.groovy =================================================================== --- scripts/CreateTestSuite.groovy (revision 4668) +++ scripts/CreateTestSuite.groovy (working copy) @@ -36,6 +36,6 @@ task (createTestSuite: "Implementation of create-test-suite") { typeName <<= "Tests" artifactName = "Tests" - artifactPath = "grails-tests" + artifactPath = "test" createArtifact() } \ No newline at end of file