From 60558c46ef53ada2833dcb4e114d86d41a465f26 Mon Sep 17 00:00:00 2001 From: Olga Maciaszek-Sharma Date: Tue, 2 Feb 2021 15:31:06 +0100 Subject: [PATCH] Reformat. --- .../cloud/openfeign/support/PageJacksonModuleTests.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/spring-cloud-openfeign-core/src/test/java/org/springframework/cloud/openfeign/support/PageJacksonModuleTests.java b/spring-cloud-openfeign-core/src/test/java/org/springframework/cloud/openfeign/support/PageJacksonModuleTests.java index 8cf97fe2..89a18148 100644 --- a/spring-cloud-openfeign-core/src/test/java/org/springframework/cloud/openfeign/support/PageJacksonModuleTests.java +++ b/spring-cloud-openfeign-core/src/test/java/org/springframework/cloud/openfeign/support/PageJacksonModuleTests.java @@ -43,10 +43,12 @@ public class PageJacksonModuleTests { } @ParameterizedTest - @ValueSource(strings = {"totalElements", "total-elements", "total_elements", "totalelements", "TotalElements"}) + @ValueSource(strings = { "totalElements", "total-elements", "total_elements", + "totalelements", "TotalElements" }) public void deserializePage(String totalElements) throws JsonProcessingException { // Given - String pageJson = "{\"content\":[\"A name\"], \"number\":1, \"size\":2, \"" + totalElements + "\": 3}"; + String pageJson = "{\"content\":[\"A name\"], \"number\":1, \"size\":2, \"" + + totalElements + "\": 3}"; // When Page result = objectMapper.readValue(pageJson, Page.class); // Then