diff --git a/spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/data/couchbase/DataCouchbaseTestIntegrationTests.java b/spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/data/couchbase/DataCouchbaseTestIntegrationTests.java index 60619c0790..fee4f1526f 100644 --- a/spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/data/couchbase/DataCouchbaseTestIntegrationTests.java +++ b/spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/data/couchbase/DataCouchbaseTestIntegrationTests.java @@ -40,7 +40,8 @@ import static org.assertj.core.api.Assertions.assertThatExceptionOfType; * * @author EddĂș MelĂ©ndez */ -@DataCouchbaseTest(properties = "spring.couchbase.env.timeouts.connect=2m") +@DataCouchbaseTest( + properties = { "spring.couchbase.env.timeouts.connect=2m", "spring.couchbase.env.timeouts.key-value=1m" }) @Testcontainers(disabledWithoutDocker = true) class DataCouchbaseTestIntegrationTests {