diff --git a/README.adoc b/README.adoc index 29700763..85a52f59 100644 --- a/README.adoc +++ b/README.adoc @@ -407,9 +407,9 @@ Gradle build scans (`--scan` option) report discrete test executions as "Executi image:gradle-build-scan-test-retry-reporting.png[Gradle build scan reporting, align="center", title="Gradle build scan test report", caption="Build scan Tests view"] -Flaky tests can also be visualized across many builds using the https://gradle.com/blog/flaky-tests/[Gradle Enterprise Tests Dashboard]. +Flaky tests can also be visualized across many builds using the https://gradle.com/blog/flaky-tests/[Develocity Tests Dashboard]. -image:gradle-enterprise-flaky-test-reporting.png[Gradle Enterprise top tests report, align="center", title=Gradle Enterprise top tests report] +image:gradle-enterprise-flaky-test-reporting.png[Develocity top tests report, align="center", title=Develocity top tests report] === IDEs diff --git a/plugin/src/main/java/org/gradle/testretry/internal/config/TestTaskConfigurer.java b/plugin/src/main/java/org/gradle/testretry/internal/config/TestTaskConfigurer.java index c48397dd..4451e438 100644 --- a/plugin/src/main/java/org/gradle/testretry/internal/config/TestTaskConfigurer.java +++ b/plugin/src/main/java/org/gradle/testretry/internal/config/TestTaskConfigurer.java @@ -72,10 +72,10 @@ private static void ensureThatNoRetryExtensionIsPresent(Test testTask) { if (retryExtensionClassName.startsWith(GRADLE_ENTERPRISE_BASE_PACKAGE)) { throw new IllegalStateException("" - + "The Gradle Enterprise Gradle plugin is conflicting with the Test Retry Gradle plugin " + + "The Develocity Gradle plugin is conflicting with the Test Retry Gradle plugin " + "and has already added a retry extension to the test task " + testTask.getName() + ". " + "Please either remove the Test Retry Gradle plugin from this project " - + "or disable the registration of the retry extension in the Gradle Enterprise Gradle plugin " + + "or disable the registration of the retry extension in the Develocity Gradle plugin " + "by specifying the system property 'gradle.enterprise.testretry.enabled' and setting it to 'false'." ); } else { diff --git a/plugin/src/test/groovy/org/gradle/testretry/CollidingRetryExtensionPluginFuncTest.groovy b/plugin/src/test/groovy/org/gradle/testretry/CollidingRetryExtensionPluginFuncTest.groovy index bf88795c..a3d63207 100644 --- a/plugin/src/test/groovy/org/gradle/testretry/CollidingRetryExtensionPluginFuncTest.groovy +++ b/plugin/src/test/groovy/org/gradle/testretry/CollidingRetryExtensionPluginFuncTest.groovy @@ -17,7 +17,7 @@ package org.gradle.testretry class CollidingRetryExtensionPluginFuncTest extends AbstractGeneralPluginFuncTest { - def "detects existing retry extension from Gradle Enterprise Gradle plugin"() { + def "detects existing retry extension from Develocity Gradle plugin"() { given: buildSrcWithEmptyClass("com.gradle.enterprise.testretry", "TestRetryExtension") @@ -30,7 +30,7 @@ class CollidingRetryExtensionPluginFuncTest extends AbstractGeneralPluginFuncTes def result = gradleRunner(gradleVersion).buildAndFail() then: - result.output.contains("The Gradle Enterprise Gradle plugin is conflicting with the Test Retry Gradle plugin") + result.output.contains("The Develocity Gradle plugin is conflicting with the Test Retry Gradle plugin") where: gradleVersion << GRADLE_VERSIONS_UNDER_TEST