diff --git a/spring-geode-samples/boot/security/src/test/java/example/app/security/BootGeodeSecurityClientApplicationIntegrationTests.java b/spring-geode-samples/boot/security/src/test/java/example/app/security/tests/BootGeodeSecurityClientApplicationIntegrationTests.java similarity index 94% rename from spring-geode-samples/boot/security/src/test/java/example/app/security/BootGeodeSecurityClientApplicationIntegrationTests.java rename to spring-geode-samples/boot/security/src/test/java/example/app/security/tests/BootGeodeSecurityClientApplicationIntegrationTests.java index b8efa2c4..fc44caf2 100644 --- a/spring-geode-samples/boot/security/src/test/java/example/app/security/BootGeodeSecurityClientApplicationIntegrationTests.java +++ b/spring-geode-samples/boot/security/src/test/java/example/app/security/tests/BootGeodeSecurityClientApplicationIntegrationTests.java @@ -13,7 +13,7 @@ * or implied. See the License for the specific language governing * permissions and limitations under the License. */ -package example.app.security; +package example.app.security.tests; import static org.assertj.core.api.AssertionsForInterfaceTypes.assertThat; import static org.junit.jupiter.api.Assertions.assertThrows; @@ -63,8 +63,12 @@ import example.app.security.server.BootGeodeSecurityServerApplication; @RunWith(SpringRunner.class) @SpringBootTest( classes = BootGeodeSecurityClientApplication.class, - properties = "spring.boot.data.gemfire.security.ssl.environment.post-processor.enabled=true" + properties = { + "spring.boot.data.gemfire.security.auth.environment.post-processor.enabled=true", + "spring.boot.data.gemfire.security.ssl.environment.post-processor.enabled=true" + } ) +@SuppressWarnings("unused") public class BootGeodeSecurityClientApplicationIntegrationTests extends ForkingClientServerIntegrationTestsSupport { @BeforeClass