From 737ef61456e6a27198178d3b787ca31f73dd108f Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Wed, 22 Feb 2023 12:42:14 -0800 Subject: [PATCH] Enable and fix GraphQlTestIntegrationTests --- .../autoconfigure/graphql/GraphQlTestIntegrationTests.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/graphql/GraphQlTestIntegrationTests.java b/spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/graphql/GraphQlTestIntegrationTests.java index de3ecf7803f1..baf865d925cd 100644 --- a/spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/graphql/GraphQlTestIntegrationTests.java +++ b/spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/graphql/GraphQlTestIntegrationTests.java @@ -16,7 +16,6 @@ package org.springframework.boot.test.autoconfigure.graphql; -import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; @@ -28,8 +27,7 @@ * @author Brian Clozel */ @GraphQlTest(BookController.class) -@Disabled -public class GraphQlTestIntegrationTests { +class GraphQlTestIntegrationTests { @Autowired private GraphQlTester graphQlTester;