From bc5dfc423aa00f10237e1e76a841e2bbeb7d2441 Mon Sep 17 00:00:00 2001 From: John Blum Date: Tue, 3 Sep 2019 15:47:16 -0700 Subject: [PATCH] Correct spelling in 'putAndGetCustomerIsSuccessful' test case method. --- .../app/crm/CustomerServiceApplicationIntegrationTests.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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");