Adapt to API changes in the STDG 0.0.17.RELEASE.

Specifically, change '@EnableGemFireMockObjects' annotation, 'destroyOnEvent' attribute references to 'destoryOnEvents'.
This commit is contained in:
John Blum
2020-07-27 00:49:33 -07:00
parent 653eefad9f
commit 20fed2b4c0

View File

@@ -263,7 +263,7 @@ public class ClientCachePoolCustomizationsIntegrationTests extends SpringBootApp
@Configuration
@EnableAutoConfiguration
@EnableGemFireMockObjects(destroyOnEvent = ContextClosedEvent.class)
@EnableGemFireMockObjects(destroyOnEvents = ContextClosedEvent.class)
static class WithAutoConfiguredClientCacheConfiguration { }
@ClientCacheApplication(serverGroup = "TestServerGroup", threadLocalConnections = true)