Skip to content

Commit

Permalink
Fix the test for GROOVY-9802 running on Java8
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellansun committed Nov 29, 2021
1 parent 26026f3 commit e2444b8
Showing 1 changed file with 3 additions and 2 deletions.
Expand Up @@ -18,15 +18,16 @@
*/
package bugs.groovy9802

import groovy.test.GroovyTestCase

import groovy.transform.CompileStatic
import org.junit.Test

import static groovy.test.GroovyAssert.assertScript
import static groovy.test.GroovyAssert.isAtLeastJdk
import static org.junit.Assume.assumeTrue

@CompileStatic
final class Groovy9802 extends GroovyTestCase {
final class Groovy9802 {
@Test
void test() {
assumeTrue(isAtLeastJdk('11.0'))
Expand Down

0 comments on commit e2444b8

Please sign in to comment.