From 76cb9f8c6e3d711c50c092a7472be8106c03efd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Scheibe?= Date: Mon, 22 May 2023 20:51:54 +0200 Subject: [PATCH] Remove incorrect test descriptions (#12998) These descriptions have been copied by accident from another test in this class. The test method name is actually sufficient in these cases. --- .../GrailsCompileStaticCompilationErrorsSpec.groovy | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/grails-test-suite-uber/src/test/groovy/grails/compiler/GrailsCompileStaticCompilationErrorsSpec.groovy b/grails-test-suite-uber/src/test/groovy/grails/compiler/GrailsCompileStaticCompilationErrorsSpec.groovy index 733b430a67c..30a83dab3a4 100644 --- a/grails-test-suite-uber/src/test/groovy/grails/compiler/GrailsCompileStaticCompilationErrorsSpec.groovy +++ b/grails-test-suite-uber/src/test/groovy/grails/compiler/GrailsCompileStaticCompilationErrorsSpec.groovy @@ -170,7 +170,7 @@ class SomeClass { given: def gcl = new GroovyClassLoader() - when: 'a class marked with @GrailsCompileStatic invokes dynamic finders on a non-domain class inside of a method marked with TypeCheckingMode.SKIP' + when: def c = gcl.parseClass(''' package grails.compiler @@ -193,7 +193,7 @@ class SomeClass implements grails.validation.Validateable { given: def gcl = new GroovyClassLoader() - when: 'a class marked with @GrailsCompileStatic invokes dynamic finders on a non-domain class inside of a method marked with TypeCheckingMode.SKIP' + when: def c = gcl.parseClass(''' package grails.compiler @@ -229,7 +229,7 @@ class SomeClass implements grails.validation.Validateable { given: def gcl = new GroovyClassLoader() - when: 'a class marked with @GrailsCompileStatic invokes dynamic finders on a non-domain class inside of a method marked with TypeCheckingMode.SKIP' + when: def c = gcl.parseClass(''' package grails.compiler