Skip to content

Commit

Permalink
code format
Browse files Browse the repository at this point in the history
  • Loading branch information
agrgr committed Dec 12, 2023
1 parent 4738541 commit 3cf9f2a
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,13 @@ public class AerospikeReadDataIntegrationTest extends BaseBlockingIntegrationTes
int age = 74;
Map<Integer, String> map = Map.of(10, "100");
Address address = new Address("Street", 20, "ZipCode", "City");
Map<String, Object> addressMap = Map.of("street", address.getStreet(), "apartment", 20, "zipCode", "ZipCode", "city", "City");
Map<String, Object> 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;
Expand Down

0 comments on commit 3cf9f2a

Please sign in to comment.