Skip to content

Commit 77e51fd

Browse files
committed
Polish
1 parent 853bb46 commit 77e51fd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spring-boot-project/spring-boot-docker-compose/src/main/java/org/springframework/boot/docker/compose/service/connection/r2dbc/ConnectionFactoryOptionsBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public class ConnectionFactoryOptionsBuilder {
4646

4747
/**
4848
* Create a new {@link ConnectionFactoryOptionsBuilder} instance.
49-
* @param driver the driver protocol
49+
* @param driver the driver
5050
* @param containerPort the source container port
5151
*/
5252
public ConnectionFactoryOptionsBuilder(String driver, int containerPort) {

spring-boot-project/spring-boot-docker-compose/src/test/java/org/springframework/boot/docker/compose/service/connection/r2dbc/ConnectionFactoryOptionsBuilderTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class ConnectionFactoryOptionsBuilderTests {
4545
@Test
4646
void createWhenDriverProtocolIsNullThrowsException() {
4747
assertThatIllegalArgumentException().isThrownBy(() -> new ConnectionFactoryOptionsBuilder(null, 123))
48-
.withMessage("DriverProtocol must not be null");
48+
.withMessage("Driver must not be null");
4949
}
5050

5151
@Test

0 commit comments

Comments
 (0)