Skip to content

Commit db55563

Browse files
committed
Merge branch 'main' into 4.0.x
2 parents 685fe7d + b1b14d2 commit db55563

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,11 @@ class ConnectionFactoryOptionsBuilderTests {
4545
@Test
4646
void createWhenDriverProtocolIsNullThrowsException() {
4747
assertThatIllegalArgumentException().isThrownBy(() -> new ConnectionFactoryOptionsBuilder(null, 123))
48+
<<<<<<< HEAD
4849
.withMessage("'driverProtocol' must not be null");
50+
=======
51+
.withMessage("Driver must not be null");
52+
>>>>>>> 3.4.x
4953
}
5054

5155
@Test

0 commit comments

Comments
 (0)