From 9264f6ab7936dbad5fba43aa380ed872a1194a46 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Tue, 4 Aug 2020 15:02:11 +0100 Subject: [PATCH] Temporarily disable rSocketEndpoint test See gh-22725 --- .../java/smoketest/rsocket/SampleRSocketApplicationTests.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-rsocket/src/test/java/smoketest/rsocket/SampleRSocketApplicationTests.java b/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-rsocket/src/test/java/smoketest/rsocket/SampleRSocketApplicationTests.java index 493b308a77..f279e8fd11 100644 --- a/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-rsocket/src/test/java/smoketest/rsocket/SampleRSocketApplicationTests.java +++ b/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-rsocket/src/test/java/smoketest/rsocket/SampleRSocketApplicationTests.java @@ -18,6 +18,7 @@ package smoketest.rsocket; import io.rsocket.metadata.WellKnownMimeType; import org.assertj.core.api.Assertions; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import reactor.core.publisher.Mono; import reactor.test.StepVerifier; @@ -47,6 +48,7 @@ public class SampleRSocketApplicationTests { } @Test + @Disabled("Fails with an unexpected error during frame handling") void rSocketEndpoint() { RSocketRequester requester = this.builder .rsocketStrategies((builder) -> builder.encoder(new SimpleAuthenticationEncoder()))