Skip to content

Commit d07308b

Browse files
committed
Fix CS
1 parent f20a444 commit d07308b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

  • spring-data-eclipse-store/src/test/java/software/xdev/spring/data/eclipse/store/integration/shared/tests

spring-data-eclipse-store/src/test/java/software/xdev/spring/data/eclipse/store/integration/shared/tests/ConcurrencyTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@ void testChangeConcurrently() throws InterruptedException
116116
customer ->
117117
service.execute(() ->
118118
{
119-
final Customer existingCustomer = this.repository.findByFirstName(CUSTOMER_NO + 1).orElseThrow();
119+
final Customer existingCustomer =
120+
this.repository.findByFirstName(CUSTOMER_NO + 1).orElseThrow();
120121
existingCustomer.setLastName("something");
121122
this.repository.save(existingCustomer);
122123
latch.countDown();

0 commit comments

Comments
 (0)