Skip to content

Commit

Permalink
Add customer lastname
Browse files Browse the repository at this point in the history
  • Loading branch information
carlesarnal committed Jan 18, 2024
1 parent 09afd6b commit fcb34d8
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ protected void generateCustomer() throws InterruptedException {
CustomerEntity customer = new CustomerEntity();
customer.setEmail(UUID.randomUUID() + "@apicurio.io");
customer.setFirstName(UUID.randomUUID().toString());
customer.setLastName(UUID.randomUUID().toString());
customer.persist();
Thread.sleep(1000);
}
Expand Down

0 comments on commit fcb34d8

Please sign in to comment.