From 27874ea4fcc5d08af8f3016a43409829e2815b4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yoann=20Rodi=C3=A8re?= Date: Thu, 27 Jun 2024 14:38:55 +0200 Subject: [PATCH] Work around https://hibernate.atlassian.net/browse/HHH-18306 --- .../src/test/kotlin/io/quarkus/it/panache/ProjectionTest.kt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/integration-tests/hibernate-orm-panache-kotlin/src/test/kotlin/io/quarkus/it/panache/ProjectionTest.kt b/integration-tests/hibernate-orm-panache-kotlin/src/test/kotlin/io/quarkus/it/panache/ProjectionTest.kt index 1d6529aa3cfbfc..8d6143c6293b01 100644 --- a/integration-tests/hibernate-orm-panache-kotlin/src/test/kotlin/io/quarkus/it/panache/ProjectionTest.kt +++ b/integration-tests/hibernate-orm-panache-kotlin/src/test/kotlin/io/quarkus/it/panache/ProjectionTest.kt @@ -4,13 +4,16 @@ import io.quarkus.test.junit.QuarkusIntegrationTest import io.quarkus.test.junit.QuarkusTest import io.restassured.RestAssured import org.hamcrest.Matchers +import org.junit.jupiter.api.Disabled import org.junit.jupiter.api.Test // Native tests +@Disabled("Broken because of https://hibernate.atlassian.net/browse/HHH-18306") @QuarkusIntegrationTest class ProjectionIT : ProjectionTest() // Quarkus/JVM tests @QuarkusTest +@Disabled("Broken because of https://hibernate.atlassian.net/browse/HHH-18306") open class ProjectionTest { @Test