Skip to content

Commit 73d3623

Browse files
committed
Merge branch '3.2.x'
Closes gh-39620
2 parents 4fd0e29 + bb7706f commit 73d3623

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/rsocket/RSocketWebSocketNettyRouteProviderTests.java

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 the original author or authors.
2+
* Copyright 2012-2024 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -74,7 +74,14 @@ void webEndpointsShouldWork() {
7474
.block(Duration.ofSeconds(3));
7575
assertThat(rsocketResponse.getName()).isEqualTo("rsocket");
7676
WebTestClient client = createWebTestClient(serverContext.getWebServer());
77-
client.get().uri("/protocol").exchange().expectStatus().isOk().expectBody().jsonPath("name", "http");
77+
client.get()
78+
.uri("/protocol")
79+
.exchange()
80+
.expectStatus()
81+
.isOk()
82+
.expectBody()
83+
.jsonPath("name")
84+
.isEqualTo("http");
7885
});
7986
}
8087

0 commit comments

Comments
 (0)