From 1ded56e4fa5842ebba0e8d6c8f0dfaec7bdc60f2 Mon Sep 17 00:00:00 2001 From: MrJovanovic13 <34819606+MrJovanovic13@users.noreply.github.com> Date: Tue, 23 Jul 2024 00:58:04 +0200 Subject: [PATCH] fix format issue --- .../jackson2/OAuth2AuthorizationServerJackson2ModuleTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oauth2-authorization-server/src/test/java/org/springframework/security/oauth2/server/authorization/jackson2/OAuth2AuthorizationServerJackson2ModuleTests.java b/oauth2-authorization-server/src/test/java/org/springframework/security/oauth2/server/authorization/jackson2/OAuth2AuthorizationServerJackson2ModuleTests.java index aeb6b76fb..371167cc3 100644 --- a/oauth2-authorization-server/src/test/java/org/springframework/security/oauth2/server/authorization/jackson2/OAuth2AuthorizationServerJackson2ModuleTests.java +++ b/oauth2-authorization-server/src/test/java/org/springframework/security/oauth2/server/authorization/jackson2/OAuth2AuthorizationServerJackson2ModuleTests.java @@ -78,7 +78,7 @@ public void readValueWhenLinkedHashSetThenSuccess() throws Exception { @Test public void readValueWhenStringArrayThenSuccess() throws Exception { - String[] array = new String[] {"one", "two"}; + String[] array = new String[] { "one", "two" }; String json = this.objectMapper.writeValueAsString(array); assertThat(this.objectMapper.readValue(json, STRING_ARRAY)).isEqualTo(array); }