From 639a1766d25a8f5605ccfc575eaab98abbcd34f5 Mon Sep 17 00:00:00 2001 From: Amrit Date: Wed, 7 Feb 2024 23:22:26 +0530 Subject: [PATCH] fixing typo in TestcontainersPropertySource --- .../testcontainers/properties/TestcontainersPropertySource.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-testcontainers/src/main/java/org/springframework/boot/testcontainers/properties/TestcontainersPropertySource.java b/spring-boot-project/spring-boot-testcontainers/src/main/java/org/springframework/boot/testcontainers/properties/TestcontainersPropertySource.java index 10bcb2a9864c..d2df1e65b101 100644 --- a/spring-boot-project/spring-boot-testcontainers/src/main/java/org/springframework/boot/testcontainers/properties/TestcontainersPropertySource.java +++ b/spring-boot-project/spring-boot-testcontainers/src/main/java/org/springframework/boot/testcontainers/properties/TestcontainersPropertySource.java @@ -129,7 +129,7 @@ static TestcontainersPropertySource getOrAdd(ConfigurableEnvironment environment return getOrAdd(environment); } Assert.state(propertySource instanceof TestcontainersPropertySource, - "Incorrect DynamicValuesPropertySource type registered"); + "Incorrect TestcontainersPropertySource type registered"); return ((TestcontainersPropertySource) propertySource); }