File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/test/java/com/amazonaws/services/dynamodbv2 Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 22 <modelVersion >4.0.0</modelVersion >
33 <groupId >com.amazonaws</groupId >
44 <artifactId >dynamodb-lock-client</artifactId >
5- <version >1.2 .0</version >
5+ <version >1.3 .0</version >
66 <packaging >jar</packaging >
77 <name >Amazon DynamoDB Lock Client</name >
88 <url >https://github.com/awslabs/amazon-dynamodb-lock-client</url >
Original file line number Diff line number Diff line change @@ -464,7 +464,7 @@ public void acquireLock_whenLockAlreadyExistsAndIsNotReleased_andSkipBlockingWai
464464 item .put ("leaseDuration" , AttributeValue .builder ().s ("100" ).build ());
465465 when (dynamodb .getItem (Mockito .<GetItemRequest >any ()))
466466 .thenReturn (GetItemResponse .builder ().item (item ).build ())
467- .thenReturn (GetItemResponse .builder ().build ());
467+ .thenReturn (GetItemResponse .builder ().item ( item ). build ());
468468 AcquireLockOptions acquireLockOptions = AcquireLockOptions .builder ("customer1" )
469469 .withShouldSkipBlockingWait (true )
470470 .withDeleteLockOnRelease (false ).build ();
You can’t perform that action at this time.
0 commit comments