From b4fe246c043a1d1ce4c5157fdcf3060cf4cf6e10 Mon Sep 17 00:00:00 2001 From: Guillaume Nodet Date: Thu, 17 Nov 2022 12:05:15 +0100 Subject: [PATCH] MPLUGIN-441] Fix test --- maven-plugin-plugin/src/it/v4api/verify.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maven-plugin-plugin/src/it/v4api/verify.groovy b/maven-plugin-plugin/src/it/v4api/verify.groovy index 89f5f2938..c3c4967cb 100644 --- a/maven-plugin-plugin/src/it/v4api/verify.groovy +++ b/maven-plugin-plugin/src/it/v4api/verify.groovy @@ -30,7 +30,7 @@ def mojo = pluginDescriptor.mojos.mojo.findAll{ it.goal.text() == "first" }[0] assert mojo.goal.text() == 'first' assert mojo.implementation.text() == 'org.apache.maven.its.v4api.FirstMojo' assert mojo.language.text() == 'java' -assert mojo.description.text() == 'Touches a test file.' +assert mojo.description.text().startsWith('Test mojo for the v4 api plugin descriptor generation.') assert mojo.requiresDependencyResolution.text() == 'test' assert mojo.requiresDependencyCollection.text() == '' assert mojo.requiresProject.text() == 'true'