diff --git a/app1/src/integration-test/groovy/functionaltests/HomeSpec.groovy b/app1/src/integration-test/groovy/functionaltests/HomeSpec.groovy index 3e209700..fea882f8 100644 --- a/app1/src/integration-test/groovy/functionaltests/HomeSpec.groovy +++ b/app1/src/integration-test/groovy/functionaltests/HomeSpec.groovy @@ -3,10 +3,12 @@ package functionaltests import grails.plugin.geb.ContainerGebSpec import grails.testing.mixin.integration.Integration +import spock.lang.PendingFeature @Integration(applicationClass = Application) class HomeSpec extends ContainerGebSpec { + @PendingFeature(reason = 'Pending fix for https://github.com/grails/grails-core/issues/13846') void "Test the home page renders correctly"() { when:"The home page is visited" go '/' diff --git a/plugins/loadfirst/grails-app/controllers/demo/UrlMappings.groovy b/plugins/loadfirst/grails-app/controllers/demo/UrlMappings.groovy index 3a5c623f..8dff9463 100644 --- a/plugins/loadfirst/grails-app/controllers/demo/UrlMappings.groovy +++ b/plugins/loadfirst/grails-app/controllers/demo/UrlMappings.groovy @@ -2,6 +2,6 @@ package demo class UrlMappings { static mappings = { - "/"(controller:"alpha", aciton:'shouldNotHappen') + "/"(controller:"alpha", action:'shouldNotHappen') } } \ No newline at end of file