diff --git a/spring-geode-samples/boot/configuration/src/test/java/example/app/crm/CustomerServiceApplicationIntegrationTests.java b/spring-geode-samples/boot/configuration/src/test/java/example/app/crm/CustomerServiceApplicationIntegrationTests.java index dccbea2c..a70c2cb8 100644 --- a/spring-geode-samples/boot/configuration/src/test/java/example/app/crm/CustomerServiceApplicationIntegrationTests.java +++ b/spring-geode-samples/boot/configuration/src/test/java/example/app/crm/CustomerServiceApplicationIntegrationTests.java @@ -20,9 +20,11 @@ import static org.assertj.core.api.Assertions.assertThat; import javax.annotation.Resource; import org.apache.geode.cache.Region; + import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; + import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.data.gemfire.tests.integration.IntegrationTestsSupport; @@ -71,7 +73,7 @@ public class CustomerServiceApplicationIntegrationTests extends IntegrationTests } @Test - public void putAndGetCustomerIsSuccessfu() { + public void putAndGetCustomerIsSuccessful() { Customer expectedJaneDoe = Customer.newCustomer(2L, "Jane Doe");