This is an automated email from the ASF dual-hosted git repository. jdaugherty pushed a commit to branch grails-geb in repository https://gitbox.apache.org/repos/asf/grails-core.git
commit 524f5b432587893f35b952114bd70a182f49e89f Author: James Daugherty <[email protected]> AuthorDate: Sun Apr 20 23:24:58 2025 -0400 Remove as long as it's causing a gradle deprecation warning --- gradle/functional-test-config.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/functional-test-config.gradle b/gradle/functional-test-config.gradle index 2419f1b99a..722fb6cb0f 100644 --- a/gradle/functional-test-config.gradle +++ b/gradle/functional-test-config.gradle @@ -93,7 +93,7 @@ tasks.withType(Test).configureEach { Test task -> } if (findProperty('testForked')) { task.maxParallelForks = configuredTestParallel - task.forkEvery = (findProperty('testForkEvery') ?: 0) as long + task.forkEvery = (findProperty('testForkEvery') ?: 0) } if (findProperty('testJvmArgs')) { task.jvmArgs = findProperty('testJvmArgs')
