From 3cf9f2a0eb6727809b433225fb9119c5dd7f50e0 Mon Sep 17 00:00:00 2001 From: agrgr Date: Tue, 12 Dec 2023 20:24:13 +0200 Subject: [PATCH] code format --- .../aerospike/convert/AerospikeReadDataIntegrationTest.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/test/java/org/springframework/data/aerospike/convert/AerospikeReadDataIntegrationTest.java b/src/test/java/org/springframework/data/aerospike/convert/AerospikeReadDataIntegrationTest.java index 2922f3dfe..3af4bb736 100644 --- a/src/test/java/org/springframework/data/aerospike/convert/AerospikeReadDataIntegrationTest.java +++ b/src/test/java/org/springframework/data/aerospike/convert/AerospikeReadDataIntegrationTest.java @@ -22,11 +22,13 @@ public class AerospikeReadDataIntegrationTest extends BaseBlockingIntegrationTes int age = 74; Map map = Map.of(10, "100"); Address address = new Address("Street", 20, "ZipCode", "City"); - Map addressMap = Map.of("street", address.getStreet(), "apartment", 20, "zipCode", "ZipCode", "city", "City"); + Map addressMap = Map.of("street", address.getStreet(), "apartment", address.getApartment(), + "zipCode", address.getZipCode(), "city", address.getCity()); @AllArgsConstructor @Getter static class User { + @Id long id; String name;