From 6a49135344797dfb6b6f36a720fa5847062def80 Mon Sep 17 00:00:00 2001 From: Guillaume Smet Date: Fri, 13 Dec 2024 18:23:58 +0100 Subject: [PATCH] Do not test POM content for CodestartKotlinTest The version when releasing will be different. --- .../io/quarkiverse/githubaction/it/CodestartKotlinTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/src/test/java/io/quarkiverse/githubaction/it/CodestartKotlinTest.java b/integration-tests/src/test/java/io/quarkiverse/githubaction/it/CodestartKotlinTest.java index 3ab6e9d..4348986 100644 --- a/integration-tests/src/test/java/io/quarkiverse/githubaction/it/CodestartKotlinTest.java +++ b/integration-tests/src/test/java/io/quarkiverse/githubaction/it/CodestartKotlinTest.java @@ -20,7 +20,7 @@ public class CodestartKotlinTest { @Test void testContent() throws Throwable { codestartTest.checkGeneratedSource("org.acme.MyAction"); - codestartTest.assertThatGeneratedFileMatchSnapshot(Language.KOTLIN, "pom.xml"); + codestartTest.assertThatGeneratedFile(Language.JAVA, "pom.xml").exists(); codestartTest.assertThatGeneratedFileMatchSnapshot(Language.KOTLIN, "README.md"); codestartTest.assertThatGeneratedFileMatchSnapshot(Language.KOTLIN, "action.yml"); codestartTest.assertThatGeneratedFileMatchSnapshot(Language.KOTLIN, "action.docker.yml");