Skip to content

Commit 685fe7d

Browse files
committed
Merge branch 'main' into 4.0.x
2 parents 5e15000 + 1c26dcc commit 685fe7d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525

2626
import org.springframework.boot.docker.compose.core.ConnectionPorts;
2727
import org.springframework.boot.docker.compose.core.RunningService;
28-
import org.springframework.boot.docker.compose.service.connection.jdbc.JdbcUrlBuilder;
2928

3029
import static org.assertj.core.api.Assertions.assertThat;
3130
import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
@@ -45,7 +44,7 @@ class ConnectionFactoryOptionsBuilderTests {
4544

4645
@Test
4746
void createWhenDriverProtocolIsNullThrowsException() {
48-
assertThatIllegalArgumentException().isThrownBy(() -> new JdbcUrlBuilder(null, 123))
47+
assertThatIllegalArgumentException().isThrownBy(() -> new ConnectionFactoryOptionsBuilder(null, 123))
4948
.withMessage("'driverProtocol' must not be null");
5049
}
5150

0 commit comments

Comments
 (0)